Beyond_Beyaan.Fleet.Fleet C# (CSharp) 메소드

Fleet() 공개 메소드

public Fleet ( ) : System
리턴 System
        public Fleet()
        {
            ships = new Dictionary<Ship, int>();
            _orderedShips = new List<Ship>();
            _transportShips = new List<TransportShip>();
            _remainingMoves = _maxSpeed * Galaxy.PARSEC_SIZE_IN_PIXELS;
            VisibleToWhichEmpires = new List<Empire>();
        }