Example #1
0
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Tic_tac_toe.new_game(graphicsInterface.Width, graphicsInterface.Height);
 }
Example #2
0
 private void Form1_Shown(object sender, EventArgs e)
 {
     Tic_tac_toe.new_game(graphicsInterface.Width, graphicsInterface.Height);
 }
Example #3
0
 private void graphicsInterface_MouseClick(object sender, MouseEventArgs e)
 {
     Tic_tac_toe.onClick(e.X, e.Y);
 }