mirror of
https://github.com/ApfelTeeSaft/vanilla.git
synced 2026-08-26 19:33:44 +00:00
11 lines
248 B
C
11 lines
248 B
C
#ifndef GAMEPAD_INPUT_H
|
|
#define GAMEPAD_INPUT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void *listen_input(void *x);
|
|
void set_button_state(int button, int32_t value);
|
|
void set_touch_state(int x, int y);
|
|
void set_battery_status(int status);
|
|
|
|
#endif // GAMEPAD_INPUT_H
|