feat(renderer): render cells instead of raw u8 array contents
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 39s

This commit is contained in:
2024-11-12 19:11:19 +01:00
parent 510bf7d885
commit 07e4819ecd
6 changed files with 122 additions and 38 deletions

View File

@@ -8,7 +8,7 @@ pub const Renderer = @import("render.zig");
pub const Key = terminal.Key;
pub const Position = terminal.Position;
pub const Size = terminal.Size;
pub const Style = terminal.Style;
pub const Cell = terminal.Cell;
test {
_ = @import("terminal.zig");