mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-15 00:20:13 +00:00
10 lines
138 B
C++
10 lines
138 B
C++
struct Mouse : Controller {
|
|
uint2 data();
|
|
void latch(bool data);
|
|
Mouse(bool port);
|
|
|
|
private:
|
|
bool latched;
|
|
unsigned counter;
|
|
};
|