Пример #1
0
 public TestGameCommandList(Games.GameBase currentGame, MainGameForm.MessageHandler messageHandler)
 {
     this.messages            = new MessageList(@".\messagelists\testgame.msglst");
     this.currentGame         = currentGame;
     this.messageHandler      = messageHandler;
     this.standardCommandList = new StandardCommandList(currentGame, messageHandler);
     this.adultCommandList    = new AdultCommandList(currentGame, messageHandler);
 }
Пример #2
0
        public BabysittingCommandList(Games.GameBase currentGame, MainGameForm.MessageHandler messageHandler)
        {
            this.messages = new MessageList(@".\MessageLists\BS.msgLst");

            this.currentGame         = currentGame;
            this.messageHandler      = messageHandler;
            this.standardCommandList = new StandardCommandList(currentGame, messageHandler);
            this.adultCommandList    = new AdultCommandList(currentGame, messageHandler);
        }