summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/gfz.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gfz.zig b/src/gfz.zig
index 2374ae6..026d491 100644
--- a/src/gfz.zig
+++ b/src/gfz.zig
@@ -17,6 +17,7 @@
 // along with gfz.  If not, see <https://www.gnu.org/licenses/>.
 
 usingnamespace @import("cimport.zig");
+const input = @import("input.zig");
 
 pub const Error = error {
     /// GLFW has not been initialized.
@@ -130,6 +131,8 @@ pub fn rawMouseMotionSupported() Error!bool {
 }
 
 pub const Window = @import("Window.zig");
+pub const Key = input.Key;
+pub const KeyMap = input.KeyMap;
 
 test {
     try init();