Vector2Int.Vector2Int C# (CSharp) 메소드

Vector2Int() 공개 메소드

public Vector2Int ( int x, int y ) : UnityEngine
x int
y int
리턴 UnityEngine
    public Vector2Int(int x, int y)
    {
        this.x = x;
        this.y = y;
    }