pub trait Tracked {
    fn channel(&self) -> &EventChannel<ComponentEvent>;
    fn channel_mut(&mut self) -> &mut EventChannel<ComponentEvent>;
}
Expand description

UnprotectedStorages that track modifications, insertions, and removals of components.

Required Methods

Event channel tracking modified/inserted/removed components.

Mutable event channel tracking modified/inserted/removed components.

Implementors