diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:42:19 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:42:19 +0200 |
| commit | a0d56ef6358e72d4e0d431523e87f746a0e45ce8 (patch) | |
| tree | 841e147032bcb9985b769d68a2ff6d2496eb3a3f /src/output.zig | |
| parent | 96f2ff793c7606c8979d45b62b827c1cc50667d1 (diff) | |
| download | river-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.gz river-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.xz | |
Make LayerSurface a toplevel struct
Diffstat (limited to 'src/output.zig')
| -rw-r--r-- | src/output.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output.zig b/src/output.zig index 34d4429..00cb971 100644 --- a/src/output.zig +++ b/src/output.zig @@ -6,7 +6,7 @@ const c = @import("c.zig"); const render = @import("render.zig"); const Box = @import("box.zig"); -const LayerSurface = @import("layer_surface.zig").LayerSurface; +const LayerSurface = @import("layer_surface.zig"); const Log = @import("log.zig").Log; const Root = @import("root.zig").Root; const View = @import("view.zig").View; |
