BigRedButtonOfDeath.Forms.Form1.PromptShips C# (CSharp) 메소드

PromptShips() 공개 메소드

public PromptShips ( Collection ships ) : void
ships Collection
리턴 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)