diff options
| author | mat <git@matdoes.dev> | 2025-09-26 09:26:22 -0630 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-09-26 21:56:32 +0600 |
| commit | 0ec25dc45ec912bd9ef07ed9107f968de55f4a18 (patch) | |
| tree | dc393947dc6edba57baac65b4ee899f6108fe545 /azalea-client/src/client.rs | |
| parent | c811dc471a31175d985e2d448a772c628dcad5f6 (diff) | |
| download | azalea-drasl-0ec25dc45ec912bd9ef07ed9107f968de55f4a18.tar.xz | |
don't re-export azalea::bot::*, and some doc improvements
Diffstat (limited to 'azalea-client/src/client.rs')
| -rw-r--r-- | azalea-client/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 98d8a3d3..2ec25dcc 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -64,13 +64,13 @@ use crate::{ player::{GameProfileComponent, PlayerInfo, retroactively_add_game_profile_component}, }; -/// `Client` has the things that a user interacting with the library will want. +/// A Minecraft client instance that can interact with the world. /// /// To make a new client, use either [`azalea::ClientBuilder`] or /// [`Client::join`]. /// /// Note that `Client` is inaccessible from systems (i.e. plugins), but you can -/// achieve everything that client can do with events. +/// achieve everything that client can do with ECS events. /// /// [`azalea::ClientBuilder`]: https://docs.rs/azalea/latest/azalea/struct.ClientBuilder.html #[derive(Clone)] |
