diff --git a/Source/Reflect.rs b/Source/Reflect.rs index 51f857e..fcf75a4 100644 --- a/Source/Reflect.rs +++ b/Source/Reflect.rs @@ -1,3 +1,5 @@ use std::any::Any; -pub trait Reflect: Any + Send + Sync + 'static {} +pub unsafe trait Reflect: Any + Send + Sync + 'static { + fn TypeName(&self) -> &'static str; +}