Blaze.Server.TdfVector2.TdfVector2 C# (CSharp) Method

TdfVector2() public method

public TdfVector2 ( string label, ulong value1, ulong value2 ) : System
label string
value1 ulong
value2 ulong
return 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