aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/event.rs
blob: 1c653c9f3886be6dae21c1e2489ddb5bb8c477eb (plain) (blame)
1
2
3
4
5
6
7
8
pub enum Event {
    Render((usize, vt100::Screen)),
    Key(textmode::Key),
    FrameLoaded(Option<usize>),
    Pause,
    Paused(bool),
    Quit,
}