WIP
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace Toolkit.Windows;
|
||||
|
||||
public record Rect
|
||||
{
|
||||
public Rect()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public Rect(int x, int y, int width, int height)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
Width = width;
|
||||
Height = height;
|
||||
}
|
||||
|
||||
public int X { get; }
|
||||
public int Y { get; }
|
||||
public int Width { get; }
|
||||
public int Height { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user