AriDEVParser.Util.Vector2.Vector2 C# (CSharp) 메소드

Vector2() 공개 메소드

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