Basic input

This commit is contained in:
liuk7071 2023-06-05 13:25:06 +02:00
parent 9ca66f4157
commit 608bf88c5f
5 changed files with 56 additions and 1 deletions

View file

@ -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(); }
};