7 lines
85 B
Zig
7 lines
85 B
Zig
|
pub const Box = struct {
|
||
|
x: i32,
|
||
|
y: i32,
|
||
|
width: u32,
|
||
|
height: u32,
|
||
|
};
|