engine: remove RenderInput/Rendered assoc types

This commit is contained in:
🪞👃🪞 2024-09-12 15:19:41 +03:00
parent ef8f87aaa0
commit 2a024cd3a3
2 changed files with 0 additions and 4 deletions

View file

@ -25,8 +25,6 @@ impl Engine for Tui {
type Area = [Self::Unit;4];
type HandleInput = Self;
type Handled = bool;
type RenderInput = Self;
type Rendered = Self::Area;
fn exited (&self) -> bool {
self.exited.fetch_and(true, Ordering::Relaxed)
}