math and things

This commit is contained in:
Nishi 2026-01-09 03:38:29 +09:00
commit 2fe23438b0
Signed by: nishi
GPG key ID: 27EF69B208EB9343
17 changed files with 243 additions and 35 deletions

View file

@ -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) {
}