CNCMaps.FileFormats.Map.Structure.Structure C# (CSharp) Метод

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

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