aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/lib.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2022-10-23 19:00:24 -0500
committerGitHub <noreply@github.com>2022-10-23 19:00:24 -0500
commit65da123631b0a2dc078786f60fa6b213e8b430ee (patch)
tree8854f29c4240d36bec1710ebc2293a488c495d3d /azalea-client/src/lib.rs
parent587001724acf8a7c6de30927da31c1f5fd7fdb09 (diff)
downloadazalea-drasl-65da123631b0a2dc078786f60fa6b213e8b430ee.tar.xz
Add Client::set_client_information (#33)
* start adding options * add default options * send options packet by default * mention set_options in Client::join doc * make TranslatableComponent::read return TextComponent * change set_options to set_client_information * clean up some code * Add `Initialize` event * fix some clippy warnings * change `Client::options` to `client_information`
Diffstat (limited to 'azalea-client/src/lib.rs')
-rwxr-xr-xazalea-client/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index 61d2d9ee..84af0298 100755
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -14,7 +14,7 @@ pub mod ping;
mod player;
pub use account::Account;
-pub use client::{Client, Event};
+pub use client::{Client, ClientInformation, Event};
pub use movement::MoveDirection;
pub use player::Player;