math and things
This commit is contained in:
parent
247661fc13
commit
2fe23438b0
17 changed files with 243 additions and 35 deletions
|
|
@ -3,11 +3,18 @@
|
|||
#include <GearBox/Log.h>
|
||||
|
||||
GBClient GBClientCreate(GBEngine engine) {
|
||||
GBClient client = malloc(sizeof(*client));
|
||||
|
||||
memset(client, 0, sizeof(*client));
|
||||
|
||||
GBLog(GBLogInfo, "Creating client");
|
||||
|
||||
return NULL;
|
||||
return client;
|
||||
}
|
||||
|
||||
void GBClientDestroy(GBClient client) {
|
||||
free(client);
|
||||
}
|
||||
|
||||
void GBClientStep(GBClient client) {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue