mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 05:34:17 +00:00
Create initial reflection system
This commit is contained in:
7
Source/TypeRegistry.rs
Normal file
7
Source/TypeRegistry.rs
Normal file
@ -0,0 +1,7 @@
|
||||
use std::any::TypeId;
|
||||
use std::collections::HashMap;
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct TypeRegistry {
|
||||
types: HashMap<TypeId, ()>,
|
||||
}
|
Reference in New Issue
Block a user