Beispiel #1
0
 public Form1()
 {
     InitializeComponent();
     TheGame = new Game();
     StartPosition = FormStartPosition.CenterScreen;
     this.DoubleBuffered = true;
 }
Beispiel #2
0
 private void startNewGame()
 {
     tmDice.Stop();
     tmMove.Stop();
     rbPlayerVsComputer.Checked = true;
     pnStarting.Visible = true;
     lbRollDice.Enabled = true;
     lbRollDice.Cursor = Cursors.Hand;
     pbTalking.Image = new Bitmap("..\\..\\Resources\\talk1.png");
     pbTalking.Visible = true;
     TheGame = new Game();
 }