generated from 2ndbeam/bevy-template
12 lines
346 B
Rust
12 lines
346 B
Rust
use bevy::{prelude::*, remote::{RemotePlugin, http::RemoteHttpPlugin}};
|
|
|
|
use expedition_demo::ExpeditionPlugin;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest()))
|
|
.add_plugins(ExpeditionPlugin)
|
|
.add_plugins(RemotePlugin::default())
|
|
.add_plugins(RemoteHttpPlugin::default())
|
|
.run();
|
|
}
|