Application / Empty with Defaults

Back to examples View in GitHub
This example is running in WebGL2 and should work in most browsers. You can check the WebGPU examples here.

//! An empty application with default plugins.

use bevy::prelude::*;

fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}