43 lines
711 B
C
43 lines
711 B
C
#pragma once
|
|
|
|
#include <libreborn/libreborn.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void run_tests();
|
|
void init_version();
|
|
void init_compat();
|
|
#ifdef MCPI_SERVER_MODE
|
|
void init_server();
|
|
#else
|
|
void init_multiplayer();
|
|
void init_benchmark(int argc, char *argv[]);
|
|
#endif
|
|
#ifndef MCPI_HEADLESS_MODE
|
|
void init_sound();
|
|
void init_input();
|
|
void init_sign();
|
|
void init_camera();
|
|
void init_touch();
|
|
void init_atlas();
|
|
void init_title_screen();
|
|
void init_skin();
|
|
void init_fps();
|
|
#endif
|
|
void init_textures();
|
|
void init_creative();
|
|
void init_game_mode();
|
|
void init_misc();
|
|
void init_death();
|
|
void init_options();
|
|
void init_chat();
|
|
void init_bucket();
|
|
void init_cake();
|
|
void init_home();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|