summaryrefslogtreecommitdiff
path: root/include/state.h
diff options
context:
space:
mode:
authorjussi2023-08-18 15:01:58 +0300
committerjussi2023-08-18 15:01:58 +0300
commit3fc07a02d5213a88ebb555d3133af2746600cf61 (patch)
tree07517393d893aed465f97209c553f0f733544d3f /include/state.h
parentc911ba043116e9d0e321311ddf27b0170d74410b (diff)
downloadreilua-enhanced-3fc07a02d5213a88ebb555d3133af2746600cf61.tar.gz
reilua-enhanced-3fc07a02d5213a88ebb555d3133af2746600cf61.tar.bz2
reilua-enhanced-3fc07a02d5213a88ebb555d3133af2746600cf61.zip
Window 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 ef30dfa..13a7c6c 100644
--- a/include/state.h
+++ b/include/state.h
@@ -80,6 +80,13 @@ typedef struct {
size_t lightCount;
size_t lightAlloc;
/* Raylib GLFW input callback events. */
+ /* Window events. */
+ GLFWwindowsizefun raylibWindowSizeCallback;
+ GLFWwindowmaximizefun raylibWindowMaximizeCallback;
+ GLFWwindowiconifyfun raylibWindowIconifyCallback;
+ GLFWwindowfocusfun raylibWindowFocusCallback;
+ GLFWdropfun raylibWindowDropCallback;
+ /* Input events. */
GLFWkeyfun raylibKeyCallback;
GLFWcharfun raylibCharCallback;
GLFWmousebuttonfun raylibMouseButtonCallback;