mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
8e7b12b760
* Expose inventory API * Update wiki
11 lines
223 B
C#
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;
|
|
}
|