This commit is contained in:
parent
df99ef3a3f
commit
4f6216635f
17 changed files with 110 additions and 100 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue