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-11-21 05:13:09 +00:00
|
|
|
void extra_hide_gui();
|
|
|
|
void extra_third_person();
|
2020-10-04 00:30:15 +00:00
|
|
|
|
2020-11-21 21:52:27 +00:00
|
|
|
void extra_set_is_left_click(int val);
|
|
|
|
|
2020-10-04 00:30:15 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|