AriDEVParser.Util.Vector4.Vector4 C# (CSharp) Method

Vector4() public method

public Vector4 ( float x, float y, float z, float o ) : System.Runtime.InteropServices
x float
y float
z float
o float
return System.Runtime.InteropServices
        public Vector4(float x, float y, float z, float o)
        {
            X = x;
            Y = y;
            Z = z;
            O = o;
        }