mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
11 lines
246 B
C#
11 lines
246 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Daybreak.API.Interop.GuildWars;
|
|
|
|
[StructLayout(LayoutKind.Explicit, Pack = 1)]
|
|
public readonly struct PlayerControlledCharContext
|
|
{
|
|
[FieldOffset(0x0014)]
|
|
public readonly uint AgentId;
|
|
}
|