This commit is contained in:
Nishi 2026-01-29 09:26:52 +09:00
commit 082bf6386d
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 11 additions and 1 deletions

View file

@ -45,6 +45,7 @@ typedef struct _GSVersion GSVersion;
typedef struct _GSEngineParam GSEngineParam;
typedef struct _GSResourceKV GSResourceKV;
typedef struct _GSBox GSBox;
typedef struct _GSNetPacket GSNetPacket;
#ifdef _GEARSRC
typedef struct _GSClient* GSClient;
typedef struct _GSServer* GSServer;
@ -105,6 +106,14 @@ struct _GSResourceKV {
GSResource value;
};
#pragma pack(1)
struct _GSNetPacket {
GSU8 flag;
GSU32 index;
GSU32 sequence;
};
#pragma pack()
#ifdef _GEARSRC
#include <GearSrc/GL/GL.h>
#include <miniaudio.h>