diff --git a/README.md b/README.md index 41c2f9f0ae..ff568fc1e9 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,18 @@ git checkout latest cargo run --example breakout ``` +To draw a window with standard functionality enabled, use: + +```rust +use bevy::prelude::*; + +fn main(){ + App::new() + .add_plugins(DefaultPlugins) + .run(); +} +``` + ### Fast Compiles Bevy can be built just fine using default configuration on stable Rust. However for really fast iterative compiles, you should enable the "fast compiles" setup by [following the instructions here](http://bevyengine.org/learn/book/getting-started/setup/).