mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
13 lines
178 B
C
13 lines
178 B
C
![]() |
#ifndef INPUT_H
|
||
|
#define INPUT_H
|
||
|
|
||
|
#include <psxpad.h>
|
||
|
|
||
|
void pad_init(void);
|
||
|
void pad_update(void);
|
||
|
|
||
|
uint16_t pad_pressing(PadButton b);
|
||
|
uint16_t pad_pressed(PadButton b);
|
||
|
|
||
|
#endif
|