bracket_terminal/
gamestate.rs

1pub use crate::prelude::BTerm;
2
3/// Implement this trait on your state struct, so the engine knows what to call on each tick.
4pub trait GameState: 'static {
5    fn tick(&mut self, ctx: &mut BTerm);
6}