summaryrefslogtreecommitdiff
path: root/ecs/src/type_name.rs
blob: 5892c6f20a80c3753d74ec5ea1007611416fcaff (plain)
1
2
3
4
5
pub trait TypeName
{
    /// Returns the name of this type.
    fn type_name(&self) -> &'static str;
}