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

9
engine/src/version.c Normal file
View file

@ -0,0 +1,9 @@
#include <GearBox/Version.h>
void GBVersionGet(GBVersion* version) {
version->majorlevel = 0;
version->minorlevel = 0;
version->patchlevel = 0;
sprintf(version->string, "%d.%d.%d", version->majorlevel, version->minorlevel, version->patchlevel);
}