aboutsummaryrefslogtreecommitdiff
path: root/src/guide.rs
blob: 0416e5cd079dea4e1ce5f1b9d206af65b9850bad (plain)
1
2
3
4
5
6
7
use crate::bitmap::Axis;

#[derive(Debug, Hash, PartialEq, Eq, Copy, Clone)]
pub struct Guide {
    pub axis: Axis,
    pub offset: u32,
}