From cb1ff29c8c7fa77bbb4e532eaa7e45df717a58ef Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 6 Jun 2024 12:50:05 +0200 Subject: refactor(ecs): move ComponentStorage to it's own module --- ecs/src/component.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ecs/src/component.rs') diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 63ef7c4..d3b00ef 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -10,6 +10,8 @@ use crate::EntityComponent; pub mod local; +pub(crate) mod storage; + pub trait Component: SystemInput + Any + TypeName { /// The component type in question. Will usually be `Self` -- cgit v1.2.3-18-g5258