Update
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 26m34s

This commit is contained in:
Florian RICHER 2025-04-13 18:06:18 +02:00
parent df99ef3a3f
commit 4f6216635f
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
17 changed files with 110 additions and 100 deletions

View file

@ -1 +1,14 @@
use crate::core::{
app::App,
window::{self, config::WindowConfig},
};
pub fn init(app: &mut App) {
let window_config = WindowConfig {
title: "Rust ASH Test".to_string(),
width: 800,
height: 600,
};
window::init(app, window_config);
}