diff options
author | HampusM <hampus@hampusmat.com> | 2024-03-29 14:20:21 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-03-29 14:20:21 +0100 |
commit | 61dfcf1ba2049bf0375821652e49b0e4c4147623 (patch) | |
tree | 3eaa2624523c893cb12b08595c4dd9e5250728c4 /ecs/src/type_name.rs | |
parent | 96ba84e42c77147d297b358c944a48fee3785ae1 (diff) |
feat(ecs): make World unwind safe
Diffstat (limited to 'ecs/src/type_name.rs')
-rw-r--r-- | ecs/src/type_name.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ecs/src/type_name.rs b/ecs/src/type_name.rs new file mode 100644 index 0000000..5892c6f --- /dev/null +++ b/ecs/src/type_name.rs @@ -0,0 +1,5 @@ +pub trait TypeName +{ + /// Returns the name of this type. + fn type_name(&self) -> &'static str; +} |