1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

doc warnings

This commit is contained in:
mat 2025-05-07 15:08:31 -05:45
parent e0d3352a90
commit ad4eaa174c
4 changed files with 8 additions and 7 deletions

View file

@ -68,10 +68,10 @@ impl Client {
/// A component that indicates that this client will be attacking the given /// A component that indicates that this client will be attacking the given
/// entity next tick. /// entity next tick.
#[derive(Component, Clone, Debug)] #[derive(Component, Clone, Debug)]
struct AttackQueued { pub struct AttackQueued {
pub target: MinecraftEntityId, pub target: MinecraftEntityId,
} }
fn handle_attack_queued( pub fn handle_attack_queued(
mut commands: Commands, mut commands: Commands,
mut query: Query<( mut query: Query<(
Entity, Entity,

View file

@ -1,5 +1,5 @@
//! Defines the [`Event`] enum and makes those events trigger when they're sent //! Defines the [`enum@Event`] enum and makes those events trigger when they're
//! in the ECS. //! sent in the ECS.
use std::sync::Arc; use std::sync::Arc;

View file

@ -37,7 +37,8 @@ pub fn send_tick_broadcast(tick_broadcast: ResMut<TickBroadcast>) {
pub fn send_update_broadcast(update_broadcast: ResMut<UpdateBroadcast>) { pub fn send_update_broadcast(update_broadcast: ResMut<UpdateBroadcast>) {
let _ = update_broadcast.0.send(()); let _ = update_broadcast.0.send(());
} }
/// A plugin that makes the [`RanScheduleBroadcast`] resource available. /// A plugin that makes the [`UpdateBroadcast`] and [`TickBroadcast`] resources
/// available.
pub struct TickBroadcastPlugin; pub struct TickBroadcastPlugin;
impl Plugin for TickBroadcastPlugin { impl Plugin for TickBroadcastPlugin {
fn build(&self, app: &mut App) { fn build(&self, app: &mut App) {

View file

@ -161,8 +161,8 @@ impl<SS, SR> SwarmBuilder<NoState, SS, (), SR>
where where
SS: Default + Send + Sync + Clone + Resource + 'static, SS: Default + Send + Sync + Clone + Resource + 'static,
{ {
/// Set the function that's called every time a bot receives an [`Event`]. /// Set the function that's called every time a bot receives an
/// This is the way to handle normal per-bot events. /// [`enum@Event`]. This is the way to handle normal per-bot events.
/// ///
/// Currently you can have up to one handler. /// Currently you can have up to one handler.
/// ///