mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
10 lines
240 B
Rust
10 lines
240 B
Rust
// Disable console on Windows for non-dev builds.
|
|
#![cfg_attr(not(feature = "dev"), windows_subsystem = "windows")]
|
|
|
|
use bevy::prelude::*;
|
|
use maze_ascension::AppPlugin;
|
|
|
|
fn main() -> AppExit {
|
|
App::new().add_plugins(AppPlugin).run()
|
|
}
|