示例#1
0
 public override void Start()
 {
     Player.step          = -1;
     Player.targetCommand = "game";
     Player.currentGame   = this;
     movesCount           = 0;
     userMove             = false;
     gameKeyboard         = BotResponses.GetGameKeyboard();
 }
示例#2
0
 public override void Start()
 {
     movesCount = 0;
     firstPlayer.currentGame    = this;
     secondPlayer.currentGame   = this;
     firstPlayer.step           = -1;
     secondPlayer.step          = -1;
     firstPlayer.targetCommand  = "game";
     secondPlayer.targetCommand = "game";
     gameKeyboard = BotResponses.GetGameKeyboard();
 }