From 9d8c73dd2671131929967214433dae5479e95b5b Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 9 Apr 2024 22:25:03 +0200 Subject: feat(ecs): add support for singleton components --- ecs/src/component.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'ecs/src/component.rs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 7a61f39..0e5f020 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -8,6 +8,7 @@ use crate::system::{ComponentRefMut, Input as SystemInput}; use crate::type_name::TypeName; pub mod local; +pub mod single; pub trait Component: SystemInput + Any + TypeName { -- cgit v1.2.3-18-g5258