aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/lib.rs
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2023-02-12 17:49:09 -0600
committerGitHub <noreply@github.com>2023-02-12 17:49:09 -0600
commit5d53d063c3c724cc33d2049fd67a058695edfe48 (patch)
treea7d350a1670488af6c1c066a8664ff4fd6667559 /azalea-client/src/lib.rs
parent962cb576b348e7f7b789d7db8420e8f9439b5705 (diff)
downloadazalea-drasl-5d53d063c3c724cc33d2049fd67a058695edfe48.tar.xz
Better chat events (#67)
* Better chat events * add a comment explaining why SendChatKindEvent is only one event
Diffstat (limited to 'azalea-client/src/lib.rs')
-rw-r--r--azalea-client/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/lib.rs b/azalea-client/src/lib.rs
index 64f452f8..a6782fa1 100644
--- a/azalea-client/src/lib.rs
+++ b/azalea-client/src/lib.rs
@@ -12,7 +12,7 @@
#![feature(type_alias_impl_trait)]
mod account;
-mod chat;
+pub mod chat;
mod client;
mod entity_query;
mod events;
@@ -26,7 +26,7 @@ pub mod task_pool;
pub use account::Account;
pub use azalea_ecs as ecs;
-pub use client::{init_ecs_app, start_ecs, ChatPacket, Client, ClientInformation, JoinError};
+pub use client::{init_ecs_app, start_ecs, Client, ClientInformation, JoinError};
pub use events::Event;
pub use local_player::{GameProfileComponent, LocalPlayer};
pub use movement::{SprintDirection, StartSprintEvent, StartWalkEvent, WalkDirection};