2026-01-09 00:40:51 +09:00
|
|
|
#ifndef __GEARBOX_SERVER_H__
|
|
|
|
|
#define __GEARBOX_SERVER_H__
|
|
|
|
|
|
|
|
|
|
#include <GearBox/MachDep.h>
|
|
|
|
|
#include <GearBox/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
GBDECL GBServer GBServerCreate(GBEngine engine);
|
|
|
|
|
GBDECL void GBServerDestroy(GBServer server);
|
2026-01-09 03:38:29 +09:00
|
|
|
GBDECL void GBServerStep(GBServer server);
|
2026-01-09 00:40:51 +09:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|