spaceconquest.Ship.Ship C# (CSharp) Method

Ship() public method

public Ship ( ShipType st ) : System
st ShipType
return System
        public Ship(ShipType st)
        {
            modelstring = st.modelstring;
            speed = st.speed;
            shiptype = st;
            health = st.shield;
            buildTime = st.buildTime;
            buildCost = st.cost;
            maxHealth = st.shield;
            miningRobots = st.miningRobots;
        }