Files
jak-project/game/runtime.h
T
water111 15bf281377 Revert "game: cleanup gk's CLI documentation" (#2306)
Reverts open-goal/jak-project#2189

can't figure out how to use the new options yet
2023-03-09 20:24:43 -05:00

21 lines
361 B
C++

#pragma once
/*!
* @file runtime.h
* Setup and launcher for the runtime.
*/
#include <thread>
#include "common/common_types.h"
#include "common/versions.h"
#include "game/kernel/common/kboot.h"
extern u8* g_ee_main_mem;
extern GameVersion g_game_version;
RuntimeExitStatus exec_runtime(int argc, char** argv);
extern std::thread::id g_main_thread_id;