BattleShip.GameOver.CreateCendre C# (CSharp) Метод

CreateCendre() публичный Метод

public CreateCendre ( ) : void
Результат void
        public void CreateCendre()
        {
            if (this.Watch.ElapsedMilliseconds % 1000 == 0)
            {
                Cendre c = new Cendre(this.Rnd.Next(0, this.View.Right - this.View.Left), 0, this.Rnd.Next(0, this.View.Right - this.View.Left), this.View.Height - 40, 5000 + this.Rnd.Next(5000));
                this.Cendres.Add(c);
            }
        }