minecraft-pi-reborn/mods/src/extra.h
TheBrokenRail 3b886e055d
Some checks reported errors
minecraft-pi-docker/pipeline/head Something is wrong with the build of this commit
Add Native GL Option
2020-10-16 15:39:04 -04:00

22 lines
274 B
C

#ifndef EXTRA_H
#define EXTRA_H
#ifdef __cplusplus
extern "C" {
#endif
int extra_has_feature(const char *name);
int extra_get_mode();
void extra_key_press(char key);
void extra_clear_input();
void extra_set_is_right_click(int val);
#ifdef __cplusplus
}
#endif
#endif