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();
|
2021-11-14 04:29:48 +00:00
|
|
|
void init_version();
|
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-28 02:16:37 +00:00
|
|
|
#else
|
|
|
|
void init_multiplayer();
|
2021-09-12 03:18:12 +00:00
|
|
|
void init_sound();
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_input();
|
2021-06-29 02:59:24 +00:00
|
|
|
void init_sign();
|
2021-08-06 01:00:41 +00:00
|
|
|
void init_creative();
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_camera();
|
2021-06-19 23:07:09 +00:00
|
|
|
void init_touch();
|
2020-12-02 23:18:49 +00:00
|
|
|
void init_textures();
|
2021-06-30 23:41:18 +00:00
|
|
|
void init_atlas();
|
2021-09-12 03:18:12 +00:00
|
|
|
#endif
|
|
|
|
void init_game_mode();
|
|
|
|
void init_misc();
|
|
|
|
void init_death();
|
|
|
|
void init_options();
|
2021-02-16 17:26:40 +00:00
|
|
|
void init_chat();
|
2021-06-17 21:32:24 +00:00
|
|
|
void init_home();
|
2021-11-14 04:29:48 +00:00
|
|
|
#if !defined(MCPI_SERVER_MODE) && !defined(MCPI_HEADLESS_MODE)
|
|
|
|
void init_benchmark();
|
|
|
|
#endif
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2021-06-17 21:32:24 +00:00
|
|
|
#endif
|