pub trait EventSender: Send + Sync { fn send(&self, event: Event) -> bool; }
Describes a type which can send entity events.
Sends the given event to all listeners. Returns true if the sender is still alive.
true