summaryrefslogtreecommitdiff
path: root/ecs/src/component.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-04-10 20:37:53 +0200
committerHampusM <hampus@hampusmat.com>2024-04-10 20:38:47 +0200
commitca51244e9d462c661d29dc60ce5bf6f9056c569b (patch)
treee5ee42ef550cc9a10feab918fa54fe342bb8dfed /ecs/src/component.rs
parentc70e06c6d879208eb2822f6207ea7b29d47c2087 (diff)
chore(ecs): make shared singletons not components
Diffstat (limited to 'ecs/src/component.rs')
-rw-r--r--ecs/src/component.rs1
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
{