assaultfish/engine/include/GearSrc/Client.h
2026-01-12 01:55:20 +09:00

19 lines
334 B
C

#ifndef __GEARSRC_CLIENT_H__
#define __GEARSRC_CLIENT_H__
#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);
#ifdef __cplusplus
}
#endif
#endif