JSRF-Decompilation/decompile/src/JSRF/Jet2.cpp
KeybadeBlox adc30bb531 Move Std.hpp into CRT directory
It's also been renamed to stddef.h since all it contained was the
definition of NULL, which lives in that header in a standard C library.
2026-02-18 19:22:13 -05:00

22 lines
329 B
C++

/* JSRF Decompilation: JSRF/Jet2.cpp
Main function.
*/
#pragma bss_seg(".data")
#include "../XDK/CRT/stddef.h"
#include "Core.hpp"
// Address: 0x0022FCE0
Game * g_game;
// Address: 0x0006F9E0
// Matching: yes
void main(void) {
g_game = new Game(NULL, 0);
g_game->initRootExecObj();
g_game->mainLoop();
delete g_game;
}