diff options
author | Danny Holman <dholman@gymli.org> | 2024-11-27 21:59:02 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-11-27 22:02:08 -0600 |
commit | a62d0aea52df81648b9d429ffd5b3e8ef190ed52 (patch) | |
tree | 9769372666083d511578a0ac98b3c1ae883173bd /include/rune/ui | |
parent | 6944276194f05c2a61aa92fe7b9104a7b947f43d (diff) |
render: centralize the type definitions
Centralize the type definitions for the Vulkan renderer. This removes
the possibility for cyclic dependencies in the include paths.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'include/rune/ui')
-rw-r--r-- | include/rune/ui/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rune/ui/input.h b/include/rune/ui/input.h index c03f8a2..3d8ca9a 100644 --- a/include/rune/ui/input.h +++ b/include/rune/ui/input.h @@ -23,7 +23,7 @@ #define RUNE_UI_INPUT_H #include <rune/util/types.h> -#include <rune/ui/window.h> +#include <rune/ui/app_window.h> #define KB_MODE_RAW 0 #define KB_MODE_TEXT 1 |