splitter/Rect.cs

18 lines
254 B
C#

namespace splitter;
public struct Rect
{
public int X;
public int Y;
public int Width;
public int Height;
public Rect(int x, int y, int w, int h)
{
X = x;
Y = y;
Width = w;
Height = h;
}
}