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

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

private CreateCendre ( ) : void
Результат void
        private void CreateCendre()
        {
            if (!gameInProgress)
            {
                Cendre c = new Cendre(rnd.Next(0, this.Right - this.Left), 0, rnd.Next(0, this.Right - this.Left), this.Height - 40, 5000 + rnd.Next(5000));
                cendres.Add(c);
            }
        }