コード例 #1
0
ファイル: GameForm.cs プロジェクト: Maxim-l1/AquariumGame
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     if (stop == true)
     {
         this.MouseClick += GameForm_MouseClick;
         IsGameOver.Start();
         AddFishTimer.Start();
         AddTimer.Start();
         stop = false;
     }
     Game.Refresh();
     PaintGame(Game.GetAll());
     AddGun(Game.GetFishinGun(), getColumn);
     label1.Text = Convert.ToString("Счёт: " + Game.GetScore());
 }
コード例 #2
0
ファイル: GameForm.cs プロジェクト: Maxim-l1/AquariumGame
 public GameForm()
 {
     InitializeComponent();
     fishesRes[0]   = small;
     fishesRes[1]   = medium;
     fishesRes[2]   = big;
     fishesRes[3]   = danger;
     fishesRes_r[0] = small;
     fishesRes_r[1] = medium_r;
     fishesRes_r[2] = big_r;
     CreateTable();
     pictureBox1.Cursor = Cursors.Hand;
     Game.Start();
     PaintGame(Game.GetAll());
     label1.Text = Convert.ToString("Счёт: " + 0);
     IsGameOver.Start();
     AddFishTimer.Start();
     AddTimer.Start();
     stop = false;
 }