1use crate::*;
23/// A reference-counted, interior-mutable handle to a `dyn Component` trait object.
4pub type ComponentRc = Rc<RefCell<dyn Component>>;
56/// A reference-counted, interior-mutable handle to an `Entity`.
7pub type EntityRc = Rc<RefCell<Entity>>;