13 lines
211 B
C
13 lines
211 B
C
|
|
#include <GearBox/Client.h>
|
||
|
|
|
||
|
|
#include <GearBox/Log.h>
|
||
|
|
|
||
|
|
GBClient GBClientCreate(GBEngine engine) {
|
||
|
|
GBLog(GBLogInfo, "Creating client");
|
||
|
|
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
|
||
|
|
void GBClientDestroy(GBClient client) {
|
||
|
|
free(client);
|
||
|
|
}
|