summaryrefslogtreecommitdiff
path: root/include/state.h
diff options
context:
space:
mode:
authorjussi2023-08-18 01:23:30 +0300
committerjussi2023-08-18 01:23:30 +0300
commitc911ba043116e9d0e321311ddf27b0170d74410b (patch)
treee51f7141a16400f794d535f999a37ed176271861 /include/state.h
parentb7b46ada041ad56b1bc84fea3062464b702135c5 (diff)
downloadreilua-enhanced-c911ba043116e9d0e321311ddf27b0170d74410b.tar.gz
reilua-enhanced-c911ba043116e9d0e321311ddf27b0170d74410b.tar.bz2
reilua-enhanced-c911ba043116e9d0e321311ddf27b0170d74410b.zip
RL.event function with input events.
Diffstat (limited to 'include/state.h')
-rw-r--r--include/state.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/state.h b/include/state.h
index 2082005..ef30dfa 100644
--- a/include/state.h
+++ b/include/state.h
@@ -79,6 +79,13 @@ typedef struct {
Light **lights;
size_t lightCount;
size_t lightAlloc;
+ /* Raylib GLFW input callback events. */
+ GLFWkeyfun raylibKeyCallback;
+ GLFWcharfun raylibCharCallback;
+ GLFWmousebuttonfun raylibMouseButtonCallback;
+ GLFWcursorposfun raylibMouseCursorPosCallback;
+ GLFWscrollfun raylibMouseScrollCallback;
+ GLFWcursorenterfun raylibCursorEnterCallback;
} State;
extern State *state;