Files
tri/src/main.rs
2023-12-24 08:52:30 -05:00

16 lines
364 B
Rust

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