jak-project/game/runtime.h

20 lines
316 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.
*/
#ifndef JAK1_RUNTIME_H
#define JAK1_RUNTIME_H
#include "common/common_types.h"
#include <thread>
2020-08-22 22:30:12 -04:00
extern u8* g_ee_main_mem;
u32 exec_runtime(int argc, char** argv);
2020-08-22 22:30:12 -04:00
extern std::thread::id g_main_thread_id;
2020-08-22 22:30:12 -04:00
#endif // JAK1_RUNTIME_H