mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-06 02:51:38 +12:00
Basic input
This commit is contained in:
parent
9ca66f4157
commit
608bf88c5f
5 changed files with 56 additions and 1 deletions
|
@ -84,5 +84,10 @@ public:
|
|||
void setHIDSharedMem(u8* ptr) { hid.setSharedMem(ptr); }
|
||||
|
||||
void signalDSPEvents() { dsp.signalEvents(); }
|
||||
|
||||
void pressKey(u32 key) { hid.pressKey(key); }
|
||||
void releaseKey(u32 key) { hid.releaseKey(key); }
|
||||
void setCirclepadX(u16 x) { hid.setCirclepadX(x); }
|
||||
void setCirclepadY(u16 y) { hid.setCirclepadY(y); }
|
||||
void updateInputs() { hid.updateInputs(); }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue