BattleShip.Form1.tmr_Tick C# (CSharp) Метод

tmr_Tick() приватный Метод

call the methods paint each 100ms
private tmr_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void tmr_Tick(object sender, EventArgs e)
        {
            /*if (!gameInProgress)
                this.CreateCendre();*/

            if (!gameInProgress && this.gameover == null)
                this.gameover = new GameOver(this);

            Invalidate();
        }