jak-project/game/runtime.h
2020-09-13 21:36:35 -04:00

17 lines
256 B
C

#pragma once
/*!
* @file runtime.h
* Setup and launcher for the runtime.
*/
#ifndef JAK1_RUNTIME_H
#define JAK1_RUNTIME_H
#include "common/common_types.h"
extern u8* g_ee_main_mem;
u32 exec_runtime(int argc, char** argv);
#endif // JAK1_RUNTIME_H