jak-project/game/runtime.h
Tyler Wilding 630388229e
cleanup gk CLI and fix issue that caused revert (#2310)
My mistake -- testing focused too much on preserving the existing
behaviour I clearly forgot to make sure the new stuff worked properly.

Just had to early out and not modify the args if they were in the new
format.
2023-03-09 23:13:01 -05:00

22 lines
436 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/common/game_common_types.h"
#include "game/kernel/common/kboot.h"
extern u8* g_ee_main_mem;
extern GameVersion g_game_version;
RuntimeExitStatus exec_runtime(GameLaunchOptions game_options, int argc, char** argv);
extern std::thread::id g_main_thread_id;