Checkpoint

This commit is contained in:
Nathan Sobo 2023-09-19 20:55:13 -06:00
parent 8406c0d9a3
commit 37d0f06e07
24 changed files with 5138 additions and 54 deletions

View file

@ -9,7 +9,7 @@ impl TestPlatform {
}
impl Platform for TestPlatform {
fn font_system(&self) -> std::sync::Arc<dyn crate::PlatformFontSystem> {
fn font_system(&self) -> std::sync::Arc<dyn crate::PlatformTextSystem> {
todo!()
}
@ -20,4 +20,8 @@ impl Platform for TestPlatform {
) -> Box<dyn crate::PlatformWindow> {
todo!()
}
fn dispatcher(&self) -> std::sync::Arc<dyn crate::PlatformDispatcher> {
todo!()
}
}