Vec2.Vec2 C# (CSharp) 메소드

Vec2() 공개 메소드

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