CNCMaps.FileFormats.Map.Infantry.Infantry C# (CSharp) Method

Infantry() public method

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