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