minecraft-pi-reborn/mods/src/init/init.c

14 lines
259 B
C
Raw Normal View History

2020-12-02 23:18:49 +00:00
#include "init.h"
__attribute__((constructor)) static void init() {
2021-01-27 16:13:06 +00:00
run_tests();
2020-12-02 23:18:49 +00:00
init_compat();
init_server();
init_game_mode();
init_input();
init_misc();
init_camera();
init_options();
init_textures();
2021-02-16 17:26:40 +00:00
init_chat();
2020-12-02 23:18:49 +00:00
}