scene crap

This commit is contained in:
2025-10-06 23:16:19 -05:00
parent cf2e6bf382
commit b00ca3d48c
12 changed files with 163 additions and 36 deletions

View File

@@ -27,7 +27,10 @@ console_t CONSOLE;
void consoleInit() {
memoryZero(&CONSOLE, sizeof(console_t));
// Register the get and set command.
// Register vars
consoleRegVar("fps", "0", NULL);
// Register cmds
CONSOLE.cmdGet = consoleRegCmd("get", cmdGet);
CONSOLE.cmdSet = consoleRegCmd("set", cmdSet);
consoleRegCmd("quit", cmdQuit);