//! Internal event registration registry used by the `ExternalBusEvent` derive macro.
//! Each derived event type contributes a callback that will call `add_event::<T>()`
//! for every Bevy `App` that adds the `EventBusPlugin`.
use App;
use Lazy;
use Mutex;
pub type RegistrationFn = fn;
pub static EVENT_REGISTRY: = new;