aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src/lib.rs')
-rw-r--r--azalea-client/src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index 0321a396..4cb1eebf 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -22,7 +22,7 @@ pub mod interact;
pub mod inventory;
mod local_player;
pub mod mining;
-mod movement;
+pub mod movement;
pub mod packet_handling;
pub mod ping;
mod player;
@@ -36,6 +36,8 @@ pub use client::{
TickBroadcast,
};
pub use events::Event;
-pub use local_player::{GameProfileComponent, LocalPlayer};
-pub use movement::{SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection};
+pub use local_player::{GameProfileComponent, LocalPlayer, LocalPlayerInLoadedChunk};
+pub use movement::{
+ PhysicsState, SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection,
+};
pub use player::PlayerInfo;