aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/event.rs
blob: 82a200ea2a5cf112601d94f6800192713303b7c9 (plain) (blame)
1
2
3
4
5
6
pub enum Event {
    Render(vt100::Screen),
    Key(textmode::Key),
    Pause,
    Quit,
}