initial (bad) voxel renderer

This commit is contained in:
2024-06-04 12:11:28 -04:00
commit 7ae6a01949
31 changed files with 4268 additions and 0 deletions

12
src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
use client::Client;
use winit::event_loop::EventLoop;
mod client;
mod util;
fn main() {
let event_loop = EventLoop::new().expect("Failed to create event loop");
event_loop
.run_app(&mut Client::new())
.expect("Failed to run event loop");
}