blob: 9b5c0991da8d7829d6d1aa97e308752348e2df45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use proptest_derive::Arbitrary;
#[derive(Clone, Copy, Debug, PartialEq, Eq, Arbitrary)]
pub enum Direction {
Left,
Up,
Down,
Right,
UpLeft,
UpRight,
DownRight,
DownLeft,
}
|