11 lines
179 B
Zig
11 lines
179 B
Zig
pub const Size = packed struct {
|
|
anchor: Position = .{},
|
|
cols: u16 = 0,
|
|
rows: u16 = 0,
|
|
};
|
|
|
|
pub const Position = packed struct {
|
|
col: u16 = 0,
|
|
row: u16 = 0,
|
|
};
|