generated from 2ndbeam/bevy-template
- Bump version to 0.2.0 - Split every module to systems, observers, plugins, etc - Renamed Crate to Container - Removed Wall component - Removed try_insert_item system - Removed inventory::ui module
18 lines
380 B
Rust
18 lines
380 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();
|
|
}
|