- Mouse wheel

This commit is contained in:
2023-09-21 18:52:45 +02:00
parent d3b14662f4
commit 4b588368d8
3 changed files with 17 additions and 0 deletions

View File

@@ -28,10 +28,12 @@ namespace input
void updateKey(uint8_t key);
void updateKeypressed(uint8_t key);
void updateClk(uint8_t btn);
void updateWheel(uint8_t dy);
int mouseX();
int mouseY();
bool mouseBtn(int btn);
bool mouseClk(int btn);
int mouseWheel();
}