use *;
/// A reference-counted, shared-mutable handle to a `dyn Component` trait object.
///
/// Held behind `EngineCell` (an `UnsafeCell`-backed `Sync` newtype) so the
/// storage matches the rest of the engine's `static mut` convention.
/// Use [`EngineCell::get_mut`] for exclusive mutable access.
pub type ComponentRc = ;
/// A reference-counted, shared-mutable handle to an `Entity`.
///
/// Mirrors [`ComponentRc`] - the underlying storage is `EngineCell<Entity>`
/// rather than `Rc<RefCell<Entity>>`. The naming and ownership semantics
/// stay the same; only the interior mutability mechanism changes.
pub type EntityRc = ;
/// A handler function that processes an `EntityEvent`.
pub type EventHandler = ;
/// A handler function that processes an `EntityEvent`.
pub type EventHandlers = ;