Finish populating JSRF/Core

This commit is contained in:
KeybadeBlox 2026-01-02 00:05:52 -05:00
parent f8578b0871
commit 08abfd3913
6 changed files with 342 additions and 19 deletions

View file

@ -15,7 +15,7 @@ Game * g_game;
// Matching: yes
void main(void) {
g_game = new Game(NULL, 0);
g_game->initExecRootObj();
g_game->initRootExecObj();
g_game->mainLoop();
delete g_game;
}