Rectangle.Rectangle C# (CSharp) Méthode

Rectangle() public méthode

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