river/src/box.zig
Isaac Freund bd91bacee9
Implement initial layer shell support
exclusive zones and popups are still TODO
2020-04-10 16:49:52 +02:00

7 lines
85 B
Zig

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