diff options
Diffstat (limited to 'ecs/src/component.rs')
-rw-r--r-- | ecs/src/component.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 207c329..cc4b460 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -5,7 +5,6 @@ use std::ops::{Deref, DerefMut}; use seq_macro::seq; -use crate::event::component::Kind as ComponentEventKind; use crate::lock::{ Error as LockError, MappedReadGuard, @@ -39,9 +38,6 @@ pub trait Component: SystemInput + Any /// Returns the name of this component. fn name(&self) -> &'static str; - - /// Returns the component UID of a component event for this component. - fn get_event_uid(&self, event_kind: ComponentEventKind) -> Uid; } impl dyn Component |