mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-03 12:27:21 +12:00
Basic input
This commit is contained in:
parent
9ca66f4157
commit
608bf88c5f
5 changed files with 56 additions and 1 deletions
|
@ -201,5 +201,10 @@ public:
|
|||
|
||||
void sendGPUInterrupt(GPUInterrupt type) { serviceManager.requestGPUInterrupt(type); }
|
||||
void signalDSPEvents() { serviceManager.signalDSPEvents(); }
|
||||
|
||||
void pressKey(u32 key) { serviceManager.pressKey(key); }
|
||||
void releaseKey(u32 key) { serviceManager.releaseKey(key); }
|
||||
void setCirclepadX(u16 x) { serviceManager.setCirclepadX(x); }
|
||||
void setCirclepadY(u16 y) { serviceManager.setCirclepadY(y); }
|
||||
void updateInputs() { serviceManager.updateInputs(); }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue