summaryrefslogtreecommitdiffstats
path: root/src/ui/rect.rs
blob: 32d317c44343d05c5b6c9d53c8515cd8637d3c69 (plain)
1
2
3
4
5
6
7
#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub struct Rect {
    pub x: u16,
    pub y: u16,
    pub width: u16,
    pub height: u16,
}