diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:28:17 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:28:17 +0200 |
| commit | 4c97531860c04f30f812f10cb73c76fa593265b6 (patch) | |
| tree | 06891aed249019ddf36509590d011acb0a1934c9 /src/seat.zig | |
| parent | a03cab94fc455f84fde2ad8afe34c91d6e5c2b3c (diff) | |
| download | river-4c97531860c04f30f812f10cb73c76fa593265b6.tar.gz river-4c97531860c04f30f812f10cb73c76fa593265b6.tar.xz | |
Make InputManager a toplevel struct
Diffstat (limited to 'src/seat.zig')
| -rw-r--r-- | src/seat.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seat.zig b/src/seat.zig index 701f1b8..8a365c7 100644 --- a/src/seat.zig +++ b/src/seat.zig @@ -2,7 +2,7 @@ const c = @import("c.zig"); const std = @import("std"); const Cursor = @import("cursor.zig").Cursor; -const InputManager = @import("input_manager.zig").InputManager; +const InputManager = @import("input_manager.zig"); const Keyboard = @import("keyboard.zig").Keyboard; const LayerSurface = @import("layer_surface.zig").LayerSurface; const Output = @import("output.zig").Output; |
