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

20 lines
214 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
int has_feature(const char *name);
2020-10-10 23:02:13 +00:00
int get_is_server();
2020-10-04 00:30:15 +00:00
void key_press(char key);
void clear_input();
#ifdef __cplusplus
}
#endif
#endif