mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-26 00:45:18 +00:00
12 lines
258 B
C#
12 lines
258 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public readonly struct GamePos
|
|
{
|
|
public readonly float X;
|
|
public readonly float Y;
|
|
public readonly uint Plane;
|
|
}
|