Implement debug view and load system fonts

This commit is contained in:
Héctor Ramón Jiménez 2019-11-03 04:39:11 +01:00
parent ef056d8489
commit 2c6bfdbc8c
17 changed files with 418 additions and 241 deletions

View file

@ -5,7 +5,7 @@ mod platform;
pub use platform::*;
pub trait Application {
type Message;
type Message: std::fmt::Debug;
fn update(&mut self, message: Self::Message);