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