diff options
author | HampusM <hampus@hampusmat.com> | 2024-04-10 20:37:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-04-10 20:38:47 +0200 |
commit | ca51244e9d462c661d29dc60ce5bf6f9056c569b (patch) | |
tree | e5ee42ef550cc9a10feab918fa54fe342bb8dfed /ecs/src/component.rs | |
parent | c70e06c6d879208eb2822f6207ea7b29d47c2087 (diff) |
chore(ecs): make shared singletons not components
Diffstat (limited to 'ecs/src/component.rs')
-rw-r--r-- | ecs/src/component.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 0e5f020..7a61f39 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -8,7 +8,6 @@ use crate::system::{ComponentRefMut, Input as SystemInput}; use crate::type_name::TypeName; pub mod local; -pub mod single; pub trait Component: SystemInput + Any + TypeName { |