mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
14 lines
276 B
Rust
14 lines
276 B
Rust
|
use bevy::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
App::build()
|
||
|
.add_resource(WindowDescriptor {
|
||
|
title: "I am a window!".to_string(),
|
||
|
width: 300,
|
||
|
height: 300,
|
||
|
vsync: true,
|
||
|
})
|
||
|
.add_default_plugins()
|
||
|
.run();
|
||
|
}
|