Advertisement
ewalkowka

Untitled

May 12th, 2023
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1.         private void planszaKomputera_Click( object sender, EventArgs e )
  2.         {
  3.             if( !Gra.Komputer.OdkrytePola[myszX, myszY] )
  4.             {
  5.                 if( Gra.WykonajAtak( myszX, myszY, Gra.Uzytkownik, Gra.Komputer ) )
  6.                 {
  7.                     planszaKomputera.Refresh();
  8.  
  9.                     if(Gra.Uzytkownik.LiczbaStatkowDoZatopienia == 0)
  10.                     {
  11.                         MessageBox.Show( $"Koniec gry, uzytkownik {Gra.Uzytkownik.Nazwa} jest najlepszy" );
  12.                         planszaKomputera.Enabled = false;
  13.                     }
  14.                 }
  15.             }
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement