aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--azalea-client/src/lib.rs2
-rw-r--r--azalea-inventory/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index ec19e3ac..17921673 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -36,7 +36,7 @@ pub use client::{
TickBroadcast,
};
pub use events::Event;
-pub use local_player::{GameProfileComponent, InstanceHolder, TabList};
+pub use local_player::{GameProfileComponent, InstanceHolder, TabList, Hunger};
pub use movement::{
PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection,
};
diff --git a/azalea-inventory/src/lib.rs b/azalea-inventory/src/lib.rs
index ba14eff8..876269e5 100644
--- a/azalea-inventory/src/lib.rs
+++ b/azalea-inventory/src/lib.rs
@@ -9,7 +9,7 @@ mod slot;
use std::ops::{Deref, DerefMut, RangeInclusive};
use azalea_inventory_macros::declare_menus;
-pub use slot::{ItemSlot, ItemSlotData};
+pub use slot::{ItemSlot, ItemSlotData, DataComponentPatch};
// TODO: remove this here and in azalea-inventory-macros when rust makes
// Default be implemented for all array sizes