From 5d53d063c3c724cc33d2049fd67a058695edfe48 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 12 Feb 2023 17:49:09 -0600 Subject: Better chat events (#67) * Better chat events * add a comment explaining why SendChatKindEvent is only one event --- azalea-client/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-client/src/lib.rs') 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}; -- cgit v1.2.3