aboutsummaryrefslogtreecommitdiff
path: root/src/cursor.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:42:19 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:42:19 +0200
commita0d56ef6358e72d4e0d431523e87f746a0e45ce8 (patch)
tree841e147032bcb9985b769d68a2ff6d2496eb3a3f /src/cursor.zig
parent96f2ff793c7606c8979d45b62b827c1cc50667d1 (diff)
downloadriver-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.gz
river-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.xz
Make LayerSurface a toplevel struct
Diffstat (limited to 'src/cursor.zig')
-rw-r--r--src/cursor.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cursor.zig b/src/cursor.zig
index d02aedd..f54c917 100644
--- a/src/cursor.zig
+++ b/src/cursor.zig
@@ -1,7 +1,7 @@
const std = @import("std");
const c = @import("c.zig");
-const LayerSurface = @import("layer_surface.zig").LayerSurface;
+const LayerSurface = @import("layer_surface.zig");
const Log = @import("log.zig").Log;
const Output = @import("output.zig");
const Seat = @import("seat.zig");