//! An application that runs with default plugins and displays an empty
//! window, but without an actual renderer.
//! This can be very useful for integration tests or CI.
//!//! See also the `headless` example which does not display a window.
usebevy::{prelude::*,render::settings::WgpuSettings};fnmain(){App::new().insert_resource(WgpuSettings {
backends:None,..default()}).add_plugins(DefaultPlugins).run();}