示例#1
0
 public PiBackdoor(Game theGame, MainWindow mainWindow)
 {
     this.myGame = theGame;
     this.myWindow = mainWindow;
     this.timer.Tick += new EventHandler(timer_Tick);
     this.timer.Interval = new TimeSpan(0, 0, 15);
     this.timer.Start();
 }
示例#2
0
 private void StartNewGame()
 {
     // Start
     gameMain = new Game(qCollection, this, masterPRNG);
     gameMain.PlayGame();
 }
示例#3
0
 /// <summary>
 /// 
 /// </summary>
 public Name(Game myGame)
 {
     _myGame = myGame;
     InitializeComponent();
 }