예제 #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();
        }