You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
364 B

pub mod shaders;
9 months ago
pub mod utility;
pub mod render;
pub mod entities;
9 months ago
use winit::event_loop::EventLoop;
use render::VulkanApp;
9 months ago
fn main() {
let event_loop = EventLoop::new();
let vulkan_app = VulkanApp::new(&event_loop);
vulkan_app.main_loop(event_loop);
}
// -------------------------------------------------------------------------------------------