servicepoint-tanks/DisplayCommands/Internals/HeaderWindow.cs
2024-04-12 14:29:43 +02:00

17 lines
307 B
C#

using System.Runtime.InteropServices;
namespace DisplayCommands.Internals;
[StructLayout(LayoutKind.Sequential, Pack = 16, Size = 10)]
internal struct HeaderWindow
{
public DisplayCommand Command;
public ushort PosX;
public ushort PosY;
public ushort Width;
public ushort Height;
}