mons_rust/models/
input.rs

1use crate::*;
2
3#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
4pub enum Input {
5    Location(Location),
6    Modifier(Modifier),
7}
8
9#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
10pub enum Modifier {
11    SelectPotion,
12    SelectBomb,
13    Cancel,
14}