JSRF-Decompilation/decompile/src/JSRF/Jet2.cpp
KeybadeBlox be4946eb98 Replace Matching: with Status:
We'd rather have three stages (unimplemented, nonmatching, matching)
than just matching or not.
2026-02-19 21:11:42 -05:00

22 lines
332 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
// Status: matching
void main(void) {
g_game = new Game(NULL, 0);
g_game->initRootExecObj();
g_game->mainLoop();
delete g_game;
}