8 lines
178 B
Rust
8 lines
178 B
Rust
use bevy::prelude::{App, AppExit};
|
|
use clap::Parser;
|
|
|
|
use distributed_physics_test::AppSettings;
|
|
|
|
fn main() -> AppExit {
|
|
App::new().add_plugins(AppSettings::parse()).run()
|
|
}
|