river/src/box.zig

7 lines
85 B
Zig
Raw Normal View History

pub const Box = struct {
x: i32,
y: i32,
width: u32,
height: u32,
};