//! A minimal Remote Wasm Bevy app.
//! Run this example with [just](https://just.systems/):
//! ```bash
//! just run-example minimal
//! ```
usebevy::prelude::*;usebevy_remote::RemotePlugin;fnmain(){letmut app =App::new();
app.add_plugins((DefaultPlugins,RemotePlugin::default()));#[cfg(target_family ="wasm")]
app.add_plugins(bevy_remote_wasm::RemoteWasmPlugin);
app.run();}