Made more declarations public in src/Window.zig

This commit is contained in:
00JCIV00 2024-02-24 10:08:20 -05:00 committed by Tim Culverhouse
parent 1e30dd7d31
commit 392dffb307

View file

@ -1,6 +1,6 @@
const std = @import("std");
const Screen = @import("Screen.zig");
pub const Screen = @import("Screen.zig");
const Cell = @import("Cell.zig");
const Mouse = @import("Mouse.zig");
const Segment = @import("Cell.zig").Segment;
@ -9,7 +9,7 @@ const gw = @import("gwidth.zig");
const log = std.log.scoped(.window);
const Window = @This();
pub const Window = @This();
pub const Size = union(enum) {
expand,