initial (bad) voxel renderer
This commit is contained in:
12
src/main.rs
Normal file
12
src/main.rs
Normal 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");
|
||||
}
|
||||
Reference in New Issue
Block a user