Files
Daybreak/Daybreak.API/Interop/GuildWars/TextParserContext.cs
T
amacocian 8e7b12b760 Inventory api (#1212)
* Expose inventory API

* Update wiki
2026-01-05 13:49:38 +01:00

11 lines
223 B
C#

using System.Runtime.InteropServices;
namespace Daybreak.API.Interop.GuildWars;
[StructLayout(LayoutKind.Explicit, Pack = 1)]
public struct TextParserContext
{
[FieldOffset(0x01D0)]
public Language Language;
}