summaryrefslogtreecommitdiff
path: root/app.hpp
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2025-01-14 21:46:01 +1100
committerquou <quou@disroot.org>2025-01-14 21:46:01 +1100
commit274c2ba0eac94a00f942f7f6a78b2b9a1d0759a3 (patch)
tree3267ce089f72925f59c947989dfe1b94c0b9af2a /app.hpp
parent7e3ad9c377eacffc8d1eef677a604796c8979c1a (diff)
text input
Diffstat (limited to 'app.hpp')
-rw-r--r--app.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/app.hpp b/app.hpp
index a1fb911..df16bd9 100644
--- a/app.hpp
+++ b/app.hpp
@@ -133,6 +133,7 @@ struct App {
virtual void on_update() = 0;
virtual void on_destroy() = 0;
virtual void on_resize() = 0;
+ virtual void on_text_input(const char* buf) = 0;
};
#endif