Rectangle.Rectangle C# (CSharp) 메소드

Rectangle() 공개 메소드

public Rectangle ( float xcoord, float ycoord, float width, float height ) : UnityEngine
xcoord float
ycoord float
width float
height float
리턴 UnityEngine
    public Rectangle(float xcoord, float ycoord, float width, float height) {
        x = xcoord;
        y = ycoord;
        w = width;
        h = height;
    }