BattleShip.GameOver.GameOver C# (CSharp) Method

GameOver() public method

public GameOver ( Form view ) : System
view System.Windows.Forms.Form
return System
        public GameOver(Form view)
        {
            this.View = view;
            this.Rnd = new Random();
            this.Cendres = new List<Cendre>();

            this.Watch = new Stopwatch();
            this.Watch.Start();
        }
        #endregion