CNCMaps.Engine.Map.AircraftObject.AircraftObject C# (CSharp) Метод

AircraftObject() публичный Метод

public AircraftObject ( string owner, string name, short health, short direction, bool onBridge ) : System
owner string
name string
health short
direction short
onBridge bool
Результат System
        public AircraftObject(string owner, string name, short health, short direction, bool onBridge)
        {
            Owner = owner;
            Name = name;
            Health = health;
            Direction = direction;
            OnBridge = onBridge;
        }
AircraftObject