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

InfantryObject() public method

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