UWP: Basic key events

This commit is contained in:
Paul Rouget 2020-06-29 10:27:34 +02:00
parent 71bd7a4199
commit 2dcb78de13
8 changed files with 228 additions and 30 deletions

View file

@ -63,6 +63,8 @@ public:
void TouchMove(float x, float y, int32_t id) { touch_move(x, y, id); }
void TouchCancel(float x, float y, int32_t id) { touch_cancel(x, y, id); }
void MouseMove(float x, float y) { mouse_move(x, y); }
void KeyDown(const char *k) { key_down(k); }
void KeyUp(const char *k) { key_up(k); }
void Reload() { reload(); }
void Stop() { stop(); }