aboutsummaryrefslogtreecommitdiff
path: root/src/box.zig
blob: 5d33f98de0b08e052d49524798688bcf2e859097 (plain) (blame)
1
2
3
4
5
6
pub const Box = struct {
    x: i32,
    y: i32,
    width: u32,
    height: u32,
};