BigRedButtonOfDeath.Forms.Form1.PromptShips C# (CSharp) Method

PromptShips() public method

public PromptShips ( Collection ships ) : void
ships Collection
return void
        public void PromptShips(Collection<PlayerShip> ships)
        {
            if (ships != null)
            {
                lstShips.Items.Clear();
                foreach (PlayerShip ship in ships)
                {
                    lstShips.Items.Add(ship.Name);
                }
            }
            this.AcceptButton = btnShip;
        }
        public void GetShipSelection(ArtemisComm.PlayerShip[] shipList)