Blaze.Server.TdfVector2.TdfVector2 C# (CSharp) 메소드

TdfVector2() 공개 메소드

public TdfVector2 ( string label, ulong value1, ulong value2 ) : System
label string
value1 ulong
value2 ulong
리턴 System
        public TdfVector2(string label, ulong value1, ulong value2)
        {
            this.Label = label;
            this.Type = TdfBaseType.TDF_TYPE_BLAZE_OBJECT_TYPE;

            this.Value1 = value1;
            this.Value2 = value2;
        }
    }
TdfVector2