diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
| commit | 96f2ff793c7606c8979d45b62b827c1cc50667d1 (patch) | |
| tree | 6746c09489a28d0f08c35b279503f40ab92d5c0e /src/render.zig | |
| parent | 7ddcebbbab8479ad80574db40aee8e894e411b2e (diff) | |
| download | river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.gz river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.xz | |
Make Output a toplevel struct
Diffstat (limited to 'src/render.zig')
| -rw-r--r-- | src/render.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render.zig b/src/render.zig index 5c331b4..1e7c3e0 100644 --- a/src/render.zig +++ b/src/render.zig @@ -3,7 +3,7 @@ const c = @import("c.zig"); const Box = @import("box.zig"); const LayerSurface = @import("layer_surface.zig").LayerSurface; -const Output = @import("output.zig").Output; +const Output = @import("output.zig"); const Server = @import("server.zig"); const View = @import("view.zig").View; const ViewStack = @import("view_stack.zig").ViewStack; |
