mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
14 lines
341 B
C#
14 lines
341 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace NexusForever.Shared.GameTable
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct GameTableField
|
|
{
|
|
public ulong NameLength;
|
|
public ulong NameOffset;
|
|
public DataType Type;
|
|
public ushort Unknown2;
|
|
public uint Unknown3;
|
|
}
|
|
}
|