Typing in terminal is now supported in rust teton.

This commit is contained in:
Drew Galbraith 2024-08-13 19:55:44 -07:00
parent 18e512cf1f
commit f04e720811
15 changed files with 489 additions and 13 deletions

View file

@ -35,4 +35,12 @@ impl Framebuffer {
}
}
}
pub fn width(&self) -> u32 {
self.fb_info.width as u32
}
pub fn height(&self) -> u32 {
self.fb_info.height as u32
}
}