Files
zterm/src/terminal/Size.zig
Yves Biener 88bc8c5346
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 39s
mod: restructure terminal structs Key, Position and Size
2024-11-10 17:01:19 +01:00

6 lines
139 B
Zig

const Position = @import("Position.zig");
anchor: Position = .{ .col = 1, .row = 1 }, // top left corner by default
cols: u16,
rows: u16,