assaultfish/engine/include/GearSrc/Client.h

23 lines
588 B
C
Raw Permalink Normal View History

2026-01-12 01:55:20 +09:00
#ifndef __GEARSRC_CLIENT_H__
#define __GEARSRC_CLIENT_H__
2026-01-12 01:54:35 +09:00
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
2026-01-27 14:36:27 +09:00
GSDECL GSClient GSClientCreate(GSEngine engine);
GSDECL void GSClientDestroy(GSClient client);
GSDECL void GSClientStep(GSClient client);
GSDECL GSGL GSClientGetGL(GSClient client);
GSDECL GSSoundEngine GSClientGetSoundEngine(GSClient client);
2026-02-01 08:09:18 +09:00
GSDECL GSNetClient GSClientGetNetClient(GSClient client);
2026-01-27 18:07:48 +09:00
GSDECL void GSClientSetSkybox(GSClient client, GSBool toggle);
2026-01-12 01:54:35 +09:00
#ifdef __cplusplus
}
#endif
#endif