init commit

This commit is contained in:
IoIxD 2026-07-04 20:11:23 -07:00
commit ae577cdc2c
8 changed files with 3364 additions and 0 deletions

9
src/main.rs Normal file
View file

@ -0,0 +1,9 @@
use backend::winit::run_winit;
pub mod backend;
pub mod state;
pub mod xwayland;
fn main() -> Result<(), Box<dyn std::error::Error>> {
run_winit()
}