voxel-rs/src/main.rs

9 lines
137 B
Rust
Raw Normal View History

2023-04-24 08:24:22 +00:00
mod core;
mod render;
mod voxel;
2023-04-07 14:41:05 +00:00
2023-04-07 10:39:06 +00:00
fn main() {
2023-04-07 14:41:05 +00:00
env_logger::init();
2023-04-24 08:28:33 +00:00
pollster::block_on(core::App::new(1280, 720, "Epic")).run();
2023-04-07 10:39:06 +00:00
}