Blacksite/crates/game/src/main.rs
Rbanh f29712d158
Some checks are pending
CI / Format, lint, test, build (push) Waiting to run
Initial project import
2026-06-05 21:44:45 -04:00

10 lines
202 B
Rust

use bevy::prelude::*;
use game::{launch, GamePlugin};
fn main() {
App::new()
.add_plugins(launch::default_plugins("Bevy FPS Foundation"))
.add_plugins(GamePlugin)
.run();
}