minecraft-pi-reborn/mods/src/extra.h

24 lines
308 B
C
Raw Normal View History

2020-10-04 00:30:15 +00:00
#ifndef EXTRA_H
#define EXTRA_H
#ifdef __cplusplus
extern "C" {
#endif
2020-10-14 17:40:32 +00:00
int extra_has_feature(const char *name);
2020-10-16 19:39:04 +00:00
int extra_get_mode();
2020-10-04 00:30:15 +00:00
2020-10-14 17:40:32 +00:00
void extra_key_press(char key);
void extra_clear_input();
void extra_set_is_right_click(int val);
2020-10-04 00:30:15 +00:00
2020-11-20 21:38:23 +00:00
int extra_get_smooth_lighting();
2020-10-04 00:30:15 +00:00
#ifdef __cplusplus
}
#endif
#endif