2021-01-27 21:26:19 +00:00
|
|
|
#pragma once
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-01-27 16:13:06 +00:00
|
|
|
void run_tests();
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_compat();
|
2021-06-17 21:32:24 +00:00
|
|
|
#ifdef MCPI_SERVER_MODE
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_server();
|
2021-06-17 21:32:24 +00:00
|
|
|
#endif
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_game_mode();
|
|
|
|
void init_input();
|
|
|
|
void init_misc();
|
|
|
|
void init_camera();
|
|
|
|
void init_options();
|
2021-06-19 23:07:09 +00:00
|
|
|
void init_touch();
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_textures();
|
2021-02-16 17:26:40 +00:00
|
|
|
void init_chat();
|
2021-06-17 21:32:24 +00:00
|
|
|
void init_home();
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2021-06-17 21:32:24 +00:00
|
|
|
#endif
|