From d5465cd28e43d48b3e913fdb1161eb907e4d80d0 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 25 Aug 2023 02:34:31 -0500 Subject: add basic pathfinding test --- azalea-client/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'azalea-client/src/lib.rs') 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; -- cgit v1.2.3