コード例 #1
0
ファイル: Menu.cs プロジェクト: naumovvvs/PongGame
 private void btnTwoPlayer_Click(object sender, EventArgs e)
 {
     // ako ne se igra, startuvaj two player
     if (!alreadyPlaying())
     {
         TwoPlayer twoPlayer = new TwoPlayer();
         twoPlayer.Show();
     }
 }
コード例 #2
0
ファイル: Menu.cs プロジェクト: naumovvvs/PongGame
        private void btnTwoPlayer_Click(object sender, EventArgs e)
        {
            TwoPlayer twoPlayer = new TwoPlayer();

            twoPlayer.Show();
        }