linux: implement dispatcher, add dummy textsystem

This commit is contained in:
Dzmitry Malyshau 2024-01-25 23:08:48 -08:00
parent d675abf70c
commit ca62d22147
10 changed files with 194 additions and 14 deletions

View file

@ -1,9 +1,11 @@
mod dispatcher;
mod display;
mod platform;
mod text_system;
mod window;
pub(crate) use dispatcher::*;
pub(crate) use display::*;
pub(crate) use platform::*;
pub(crate) use text_system::*;
pub(crate) use window::*;