diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:47:10 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:47:10 +0200 |
| commit | 97d395dbfc2ecbd98f074cb6bd8b641119891b97 (patch) | |
| tree | 4efb190ff6beb25aa86dd9c3fb6aad3b5744eaa0 /src/seat.zig | |
| parent | a73343c92f92ba2f93a878a5d70e9ff529d9141f (diff) | |
| download | river-97d395dbfc2ecbd98f074cb6bd8b641119891b97.tar.gz river-97d395dbfc2ecbd98f074cb6bd8b641119891b97.tar.xz | |
Make Cursor 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 d62d5e0..faf7bca 100644 --- a/src/seat.zig +++ b/src/seat.zig @@ -3,7 +3,7 @@ const Self = @This(); const c = @import("c.zig"); const std = @import("std"); -const Cursor = @import("cursor.zig").Cursor; +const Cursor = @import("cursor.zig"); const InputManager = @import("input_manager.zig"); const Keyboard = @import("keyboard.zig").Keyboard; const LayerSurface = @import("layer_surface.zig"); |
