Files
reflection/Source/TypeRegistry.rs
2021-12-23 12:02:38 -03:00

12 lines
193 B
Rust

use std::any::TypeId;
use std::collections::HashMap;
#[derive(Default)]
pub struct TypeRegistry {
types: HashMap<TypeId, ()>,
}
impl TypeRegistry {
pub fn Register<T>(&mut self) {}
}