Network: First round seems to work fine now. Pot/sets not yet displayed correctly.

This commit is contained in:
lotodore
2007-05-24 20:26:23 +00:00
parent 69ab45c902
commit 5431f0b93a
19 changed files with 233 additions and 147 deletions
+18
View File
@@ -219,6 +219,24 @@ protected:
ClientStateWaitHand();
};
// State: Hand Loop.
class ClientStateRunHand : public ClientState
{
public:
// Access the state singleton.
static ClientStateRunHand &Instance();
virtual ~ClientStateRunHand();
// select on socket.
virtual int Process(ClientThread &client);
protected:
// Protected constructor - this is a singleton.
ClientStateRunHand();
};
// State: Final (TODO).
class ClientStateFinal : public ClientState
{