servicepoint-tanks/DisplayCommands/Internals/HeaderWindow.cs

17 lines
307 B
C#
Raw Normal View History

2024-04-12 14:29:26 +02:00
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;
}