about summary refs log tree commit diff
path: root/src/types/direction.rs
blob: 5ab660f19317e6b7a3a1fc0a1fbd99bb3864a8b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
use proptest_derive::Arbitrary;

#[derive(Clone, Copy, Debug, PartialEq, Eq, Arbitrary)]
pub enum Direction {
    Left,
    Up,
    Down,
    Right,
}