2021-01-27 21:26:19 +00:00
|
|
|
#pragma once
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-11-14 04:29:48 +00:00
|
|
|
typedef void (*misc_update_function_t)(unsigned char *minecraft);
|
|
|
|
void misc_run_on_update(misc_update_function_t function);
|
|
|
|
|
|
|
|
void Level_saveLevelData_injection(unsigned char *level);
|
|
|
|
|
2021-06-17 21:32:24 +00:00
|
|
|
__attribute__((visibility("internal"))) void _init_misc_cpp();
|
2021-11-14 04:29:48 +00:00
|
|
|
__attribute__((visibility("internal"))) void _init_misc_logging();
|
2020-12-02 23:18:49 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2021-06-30 20:40:57 +00:00
|
|
|
#endif
|