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;
        }