jak-project/game/runtime.h

22 lines
442 B
C
Raw Normal View History

#pragma once
2020-08-22 22:30:12 -04:00
/*!
* @file runtime.h
* Setup and launcher for the runtime.
*/
#include <thread>
2020-08-22 22:30:12 -04:00
2022-04-30 14:55:13 -04:00
#include "common/common_types.h"
#include "common/versions.h"
#include "game/common/game_common_types.h"
#include "game/kernel/common/kboot.h"
2022-04-30 14:55:13 -04:00
2020-08-22 22:30:12 -04:00
extern u8* g_ee_main_mem;
extern GameVersion g_game_version;
2022-04-30 14:55:13 -04:00
RuntimeExitStatus exec_runtime(GameLaunchOptions game_options, int argc, const char** argv);
2020-08-22 22:30:12 -04:00
extern std::thread::id g_main_thread_id;