mirror of
https://github.com/bevyengine/bevy
synced 2024-11-14 00:47:32 +00:00
14 lines
322 B
Rust
14 lines
322 B
Rust
|
use bevy::prelude::*;
|
||
|
use bevy::winit::WinitPlugin;
|
||
|
|
||
|
fn main() {
|
||
|
App::new()
|
||
|
.add_plugins_with(DefaultPlugins, |group| group.disable::<WinitPlugin>())
|
||
|
.add_system(setup_system)
|
||
|
.run();
|
||
|
}
|
||
|
|
||
|
fn setup_system(mut commands: Commands) {
|
||
|
commands.spawn_bundle(PerspectiveCameraBundle::default());
|
||
|
}
|