mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-11 17:58:29 +12:00
Add basic input
This commit is contained in:
parent
a44ac89c78
commit
a8334f1333
5 changed files with 56 additions and 1 deletions
|
@ -200,5 +200,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