Files
qbtmud/Lantean.QBTMudBlade/Interop/BoundingClientRect.cs
2024-04-22 14:15:07 +01:00

21 lines
402 B
C#

namespace Lantean.QBTMudBlade.Interop
{
public class BoundingClientRect
{
public int Bottom { get; set; }
public int Top { get; set; }
public int Left { get; set; }
public int Right { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public int X { get; set; }
public int Y { get; set; }
}
}