Example #1
0
        public LobbyGameState()
        {
            var clientService = new ClientService();

            inputProcessor = new ClientInputProcessor(clientService);
            stateManager   = StateManager.GetInstance();
        }
Example #2
0
 public ClientGameState(ClientInputProcessor client, string login, int sessionId)
 {
     this.client    = client;
     this.login     = login;
     this.sessionId = sessionId;
 }