feat: unfinished item drag and drop

This commit is contained in:
Alexey 2026-03-11 17:29:27 +03:00
commit 0add3e4c20
9 changed files with 191 additions and 15 deletions

View file

@ -1,4 +1,4 @@
use bevy::prelude::*;
use bevy::{prelude::*, remote::{RemotePlugin, http::RemoteHttpPlugin}};
use expedition_demo::ExpeditionPlugin;
@ -6,5 +6,7 @@ fn main() {
App::new()
.add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest()))
.add_plugins(ExpeditionPlugin)
.add_plugins(RemotePlugin::default())
.add_plugins(RemoteHttpPlugin::default())
.run();
}