Vec2.Vec2 C# (CSharp) Method

Vec2() public method

public Vec2 ( int x, int y )
x int
y int
    public Vec2(int x, int y)
    {
        this.x = x;
        this.y = y;
    }
Vec2