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

TdfVector3() public method

public TdfVector3 ( string label, ulong value1, ulong value2, ulong value3 ) : System
label string
value1 ulong
value2 ulong
value3 ulong
return System
        public TdfVector3(string label, ulong value1, ulong value2, ulong value3)
        {
            this.Label = label;
            this.Type = TdfBaseType.TDF_TYPE_BLAZE_OBJECT_ID;

            this.Value1 = value1;
            this.Value2 = value2;
            this.Value3 = value3;
        }
    }
TdfVector3