assaultfish/engine/include/GearBox/Client.h

19 lines
334 B
C
Raw Normal View History

2026-01-09 00:40:51 +09:00
#ifndef __GEARBOX_CLIENT_H__
#define __GEARBOX_CLIENT_H__
#include <GearBox/MachDep.h>
#include <GearBox/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GBDECL GBClient GBClientCreate(GBEngine engine);
GBDECL void GBClientDestroy(GBClient client);
2026-01-09 03:38:29 +09:00
GBDECL void GBClientStep(GBClient client);
2026-01-09 00:40:51 +09:00
#ifdef __cplusplus
}
#endif
#endif