mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
18 lines
254 B
C#
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;
|
|
}
|
|
}
|