aboutsummaryrefslogtreecommitdiff
path: root/src/events.rs
blob: 0619b1826c6041993fb0286808dbc03345df7e3e (plain)
1
2
3
4
5
6
7
8
9
10
use crate::world::Movement;

#[derive(Copy, Clone, Debug)]
pub enum ViewportEvent {
    Quit,
    Help,
    MovePlayer(Movement),
    DownStairs,
    UpStairs,
}