diff options
Diffstat (limited to 'azalea/src/lib.rs')
| -rw-r--r-- | azalea/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 351c956a..332dc565 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -9,6 +9,7 @@ pub mod bot; mod builder; mod client_impl; pub mod container; +mod entity_ref; pub mod events; mod join_opts; pub mod nearest_entity; @@ -53,7 +54,7 @@ pub use builder::ClientBuilder; use futures::future::BoxFuture; pub use join_opts::JoinOpts; -pub use crate::{client_impl::Client, events::Event}; +pub use crate::{client_impl::Client, entity_ref::EntityRef, events::Event}; pub type BoxHandleFn<S, R> = Box<dyn Fn(Client, Event, S) -> BoxFuture<'static, R> + Send>; pub type HandleFn<S, Fut> = fn(Client, Event, S) -> Fut; |
