WolfEngine.Vector2f.Vector2f C# (CSharp) Method

Vector2f() public method

public Vector2f ( float x, float y ) : System
x float
y float
return System
        public Vector2f(float x, float y)
        {
            this.x = x;
            this.y = y;
        }