mirror of
https://github.com/bevyengine/bevy
synced 2025-03-02 14:27:21 +00:00
12 lines
248 B
Rust
12 lines
248 B
Rust
|
use bevy::{prelude::*, render::options::WgpuOptions};
|
||
|
|
||
|
fn main() {
|
||
|
App::new()
|
||
|
.insert_resource(WgpuOptions {
|
||
|
backends: None,
|
||
|
..Default::default()
|
||
|
})
|
||
|
.add_plugins(DefaultPlugins)
|
||
|
.run();
|
||
|
}
|