Update TypeRegistry.rs

This commit is contained in:
Werner
2021-12-23 12:02:38 -03:00
parent cb0ceca673
commit acb22d7ce6

View File

@ -5,3 +5,7 @@ use std::collections::HashMap;
pub struct TypeRegistry {
types: HashMap<TypeId, ()>,
}
impl TypeRegistry {
pub fn Register<T>(&mut self) {}
}