This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/W32/Native/RECT.cs

13 lines
287 B
C#

using System.Runtime.InteropServices;
namespace CC_Functions.W32.Native
{
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int Left, Top, Right, Bottom;
public int Height => Bottom - Top;
public int Width => Right - Left;
}
}