Skip to content
Snippets Groups Projects
main.rs 112 B
Newer Older
Louis's avatar
Louis committed
use bevy::prelude::App;

fn main() {
	App::new()
		.add_plugins(game_core::system::SystemPluginSet)
		.run();
}