Adding more stuff in

This commit is contained in:
2026-04-18 07:41:32 +01:00
parent 34dad5e000
commit e28d4fdb22
6 changed files with 95 additions and 35 deletions
+13
View File
@@ -0,0 +1,13 @@
use sdl3::{render::Canvas, ttf::Font, video::Window};
pub struct Prefs {
pub font_path: String,
pub screen_width: u32,
pub screen_height: u32,
}
pub struct Screen<'a> {
pub canvas: &'a Canvas<Window>,
pub font: &'a Font<'a>,
}