diff options
| author | Shayne Hartford <shaybox@shaybox.com> | 2025-02-17 18:28:37 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-17 17:28:37 -0600 |
| commit | c285fadd34df2a43a5cfe1d3c02a3cc47bf69e9e (patch) | |
| tree | 8e68e7869a23be9dcbfad43a8de957b35d3723f1 /azalea-world/src | |
| parent | 022771b71bdbfa29253342af36a63f0fe00ea962 (diff) | |
| download | azalea-drasl-c285fadd34df2a43a5cfe1d3c02a3cc47bf69e9e.tar.xz | |
Enable serde feature in sub-crates (#202)
Add serde derive to MinecraftEntityId
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/world.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azalea-world/src/world.rs b/azalea-world/src/world.rs index ffd60026..ae257696 100644 --- a/azalea-world/src/world.rs +++ b/azalea-world/src/world.rs @@ -14,6 +14,8 @@ use azalea_core::registry_holder::RegistryHolder; use bevy_ecs::{component::Component, entity::Entity}; use derive_more::{Deref, DerefMut}; use nohash_hasher::IntMap; +#[cfg(feature = "serde")] +use serde::{Deserialize, Serialize}; use crate::{ChunkStorage, PartialChunkStorage}; @@ -57,7 +59,8 @@ impl PartialInstance { /// `#[var]` attribute. /// /// [`Entity`]: bevy_ecs::entity::Entity -#[derive(Component, Copy, Clone, Debug, PartialEq, Eq, Deref, DerefMut)] +#[derive(Component, Copy, Clone, Debug, Default, PartialEq, Eq, Deref, DerefMut)] +#[cfg_attr(feature = "serde", derive(Deserialize, Serialize))] pub struct MinecraftEntityId(pub i32); impl Hash for MinecraftEntityId { |
