minecraft-pi-reborn/mods/include/mods/init/init.h

35 lines
601 B
C
Raw Permalink Normal View History

2021-01-27 21:26:19 +00:00
#pragma once
2020-12-02 23:18:49 +00:00
2024-04-08 03:29:23 +00:00
extern "C" {
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();
2024-05-12 07:19:01 +00:00
void init_benchmark();
#endif
#ifndef MCPI_HEADLESS_MODE
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();
2020-12-02 23:18:49 +00:00
void init_camera();
void init_atlas();
2022-09-22 00:15:00 +00:00
void init_title_screen();
2023-10-19 05:23:34 +00:00
void init_skin();
2024-02-08 05:34:43 +00:00
void init_fps();
2021-09-12 03:18:12 +00:00
#endif
2024-05-09 05:25:53 +00:00
void init_touch();
2023-11-11 05:44:26 +00:00
void init_textures();
2022-09-21 21:34:19 +00:00
void init_creative();
2021-09-12 03:18:12 +00:00
void init_game_mode();
void init_misc();
void init_death();
void init_options();
2021-02-16 17:26:40 +00:00
void init_chat();
2022-07-10 14:37:19 +00:00
void init_bucket();
void init_cake();
2024-04-08 03:29:23 +00:00
void init_home();
}