This commit is contained in:
Nishi 2026-01-09 00:40:51 +09:00
commit 247661fc13
Signed by: nishi
GPG key ID: 27EF69B208EB9343
22 changed files with 325 additions and 8 deletions

13
engine/src/client.c Normal file
View file

@ -0,0 +1,13 @@
#include <GearBox/Client.h>
#include <GearBox/Log.h>
GBClient GBClientCreate(GBEngine engine) {
GBLog(GBLogInfo, "Creating client");
return NULL;
}
void GBClientDestroy(GBClient client) {
free(client);
}