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

UnitObject() public method

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