move input stuff to src/input

This commit is contained in:
Mitchell Hashimoto
2022-08-23 19:52:14 -07:00
parent bc9f81e8d2
commit 222f70857a
5 changed files with 315 additions and 244 deletions

8
src/input.zig Normal file
View File

@@ -0,0 +1,8 @@
const std = @import("std");
pub usingnamespace @import("input/key.zig");
pub const Binding = @import("input/Binding.zig");
test {
std.testing.refAllDecls(@This());
}