Beispiel #1
0
        public Ship(ShipName ship)
        {
            _shipName = ship;
            _tiles    = new List <Tile>();

            //gets the ship size from the enumarator
            /*******/
            _sizeOfShip = _shipName.CompareTo(ship);
        }