19 lines
334 B
C
19 lines
334 B
C
#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);
|
|
GBDECL void GBClientStep(GBClient client);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|