JSRF-Decompilation/src/Jet2.cpp
KeybadeBlox 58a2dbb2fb Consistent capitalization
The release binary was called Jet2.exe (according to the XBE header), so
they were apparently capitalizing file names.  This was already
reflected in objects.csv, but not the source files.
2025-12-10 22:43:42 -05:00

15 lines
227 B
C++

#include "Core.hpp"
// Address: 0x0022FCE0
Game * g_game;
// Address: 0x0006F9E0
// Matching: no
void main(void) {
g_game = new Game(NULL, 0);
g_game->initExecRootObj();
g_game->mainLoop();
delete g_game;
}