assaultfish/engine/include/GearSrc/Server.h

19 lines
334 B
C
Raw Normal View History

2026-01-12 01:55:20 +09:00
#ifndef __GEARSRC_SERVER_H__
#define __GEARSRC_SERVER_H__
2026-01-12 01:54:35 +09:00
#include <GearSrc/MachDep.h>
#include <GearSrc/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
GSDECL GSServer GSServerCreate(GSEngine engine);
GSDECL void GSServerDestroy(GSServer server);
GSDECL void GSServerStep(GSServer server);
#ifdef __cplusplus
}
#endif
#endif