Beispiel #1
0
 /// Constructor for objects of class Helper
 public HelpCommand(Dictionary<string, Response> responses,
               CommandMapper commandMapper)
 {
     this._responses = responses;
     this._commandMapper = commandMapper;
     CommandName = "help";
 }
Beispiel #2
0
 /// Create the game.
 public Game()
 {
     _commandMapper = new CommandMapper(this);
     _playerArr = gameInit();
 }