feat: first commit

This commit is contained in:
2025-04-25 20:23:39 +02:00
parent 0e8749d8bc
commit 1ec12fa728
7 changed files with 3274 additions and 22 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
use winit::event_loop::EventLoop;
mod app;
fn main() {
let event_loop = EventLoop::new().unwrap();
event_loop.run_app(&mut app::Application::new()).unwrap();
}