Push break job work [not work]
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 7m55s

This commit is contained in:
Florian RICHER 2025-05-26 16:46:26 +02:00
parent e58c22b531
commit 5b74eef561
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
13 changed files with 118 additions and 18 deletions

View file

@ -2,7 +2,9 @@ use vulkano::device::{DeviceExtensions, DeviceFeatures};
use vulkano_util::context::{VulkanoConfig, VulkanoContext};
use winit::event_loop::{ControlFlow, EventLoop};
mod render;
mod core;
mod game;
fn main() {
env_logger::init();
@ -28,7 +30,7 @@ fn main() {
let event_loop = EventLoop::new().unwrap();
event_loop.set_control_flow(ControlFlow::Poll);
let mut app = render::app::App::from(vulkano_context);
let mut app = core::render::app::App::from(vulkano_context);
match event_loop.run_app(&mut app) {
Ok(_) => {}