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
|
|
|
|
|
|
|
|
|
|
GSDECL GSClient GSClientCreate(GSEngine engine);
|
|
|
|
|
GSDECL void GSClientDestroy(GSClient client);
|
|
|
|
|
GSDECL void GSClientStep(GSClient client);
|
2026-01-23 15:38:08 +09:00
|
|
|
GSDECL GSGL GSClientGetGL(GSClient client);
|
|
|
|
|
GSDECL void GSClientToggleSkybox(GSClient client, GSBool toggle);
|
2026-01-12 01:54:35 +09:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|