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

Vector2() public method

public Vector2 ( float x, float y ) : System.Runtime.InteropServices
x float
y float
return System.Runtime.InteropServices
        public Vector2(float x, float y)
        {
            X = x;
            Y = y;
        }