All checks were successful
Intrepid/Prometeu/Runtime/pipeline/head This commit looks good
8 lines
129 B
Rust
8 lines
129 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub struct Rect {
|
|
pub x: i32,
|
|
pub y: i32,
|
|
pub w: i32,
|
|
pub h: i32,
|
|
}
|