aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/event.rs
blob: 55f4da1ed081962d6996fc135af5e0df37f4842c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub enum Event {
    Render((usize, vt100::Screen)),
    Key(textmode::Key),
    FrameLoaded(Option<usize>),
    Pause,
    Paused(bool),
    FirstFrame,
    LastFrame,
    NextFrame,
    PreviousFrame,
    ToggleUi,
    Quit,
}