rename
This commit is contained in:
parent
472e21e389
commit
2d6ed53abc
56 changed files with 746 additions and 746 deletions
25
engine/include/GearSrc/Core.h
Normal file
25
engine/include/GearSrc/Core.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef __GEARBOX_CORE_H__
|
||||
#define __GEARBOX_CORE_H__
|
||||
|
||||
#include <GearSrc/MachDep.h>
|
||||
#include <GearSrc/TypeDefs.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
GSDECL void GSInit(void);
|
||||
|
||||
GSDECL GSEngine GSEngineCreate(GSEngineParam* param);
|
||||
GSDECL void GSEngineDestroy(GSEngine engine);
|
||||
GSDECL void GSEngineParamInit(GSEngineParam* param);
|
||||
GSDECL void GSEngineLoop(GSEngine engine);
|
||||
GSDECL GSClient GSEngineGetClient(GSEngine engine);
|
||||
GSDECL GSServer GSEngineGetServer(GSEngine engine);
|
||||
GSDECL int GSEngineRegisterResource(GSEngine engine, const char* name, const char* path);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue