use core::any::TypeId;
use crate::entity::Entity;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum NotFound {
Entity(Entity),
Component(TypeId),
EntitySystem(u32),
ComponentKey(String),
Unknown(String),
Key((Entity, String)),
}
impl Default for NotFound {
fn default() -> Self {
NotFound::Unknown(String::default())
}
}