WolfEngine.Vector2f.Vector2f C# (CSharp) 메소드

Vector2f() 공개 메소드

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