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

Structure() public method

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