bevy/crates/bevy_serialization/src/lib.rs
2020-04-24 17:57:20 -07:00

8 lines
115 B
Rust

mod world;
pub use world::*;
pub fn type_name_of_val<T>(_: T) -> &'static str {
std::any::type_name::<T>()
}