CNCMaps.Engine.Map.AircraftObject.AircraftObject C# (CSharp) Method

AircraftObject() public method

public AircraftObject ( string owner, string name, short health, short direction, bool onBridge ) : System
owner string
name string
health short
direction short
onBridge bool
return System
        public AircraftObject(string owner, string name, short health, short direction, bool onBridge)
        {
            Owner = owner;
            Name = name;
            Health = health;
            Direction = direction;
            OnBridge = onBridge;
        }
AircraftObject