diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-11 13:35:15 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-11 13:35:15 +0200 |
commit | 52d99b16534631e293a23ddbc18c4ea70b71392f (patch) | |
tree | f596887a976540ab553e69105ab192cbbb2dd753 /server/src/data.rs | |
parent | 63d5a3ff37d1e3972d34ccc9e1d26c3b4bc05efb (diff) | |
download | hurrycurry-52d99b16534631e293a23ddbc18c4ea70b71392f.tar hurrycurry-52d99b16534631e293a23ddbc18c4ea70b71392f.tar.bz2 hurrycurry-52d99b16534631e293a23ddbc18c4ea70b71392f.tar.zst |
add recipes back to protocol
Diffstat (limited to 'server/src/data.rs')
-rw-r--r-- | server/src/data.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/server/src/data.rs b/server/src/data.rs index 522df916..99cbaf9f 100644 --- a/server/src/data.rs +++ b/server/src/data.rs @@ -16,14 +16,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -use crate::{ - entity::{construct_entity, Entity, EntityDecl}, - interaction::Recipe, -}; +use crate::entity::{construct_entity, Entity, EntityDecl}; use anyhow::{anyhow, bail, Result}; use hurrycurry_protocol::{ glam::{IVec2, Vec2}, - ItemIndex, MapMetadata, RecipeIndex, TileIndex, + ItemIndex, MapMetadata, Recipe, RecipeIndex, TileIndex, }; use serde::{Deserialize, Serialize}; use std::{ |