CNCMaps.Engine.Map.StructureObject.StructureObject C# (CSharp) 메소드

StructureObject() 공개 메소드

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