[client] app: add and expose app_handleKeyPress and app_handleKeyRelease

This commit is contained in:
Tudor Brindus
2021-01-17 21:20:42 -05:00
committed by Geoffrey McRae
parent cac454d9cf
commit 7c9b273f70
2 changed files with 90 additions and 78 deletions

View File

@@ -37,6 +37,8 @@ void app_handleMouseNormal(double ex, double ey);
void app_handleMouseBasic(void);
void app_handleButtonPress(int button);
void app_handleButtonRelease(int button);
void app_handleKeyPress(int scancode);
void app_handleKeyRelease(int scancode);
void app_handleWindowEnter(void);
void app_handleWindowLeave(void);
void app_handleFocusEvent(bool focused);