diff options
| author | mat <git@matdoes.dev> | 2023-08-25 02:34:31 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-08-25 02:34:31 -0500 |
| commit | d5465cd28e43d48b3e913fdb1161eb907e4d80d0 (patch) | |
| tree | b0962ac1bd09b434c67296c038ef3b26245ce6d7 /azalea-client/src/lib.rs | |
| parent | 9c31f8033f006d5f505ce97e359638d6c1136859 (diff) | |
| download | azalea-drasl-d5465cd28e43d48b3e913fdb1161eb907e4d80d0.tar.xz | |
add basic pathfinding test
Diffstat (limited to 'azalea-client/src/lib.rs')
| -rw-r--r-- | azalea-client/src/lib.rs | 8 |
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; |
