diff options
author | HampusM <hampus@hampusmat.com> | 2025-09-13 15:19:09 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-09-13 15:19:09 +0200 |
commit | 1bf48462393099d971b7a8613bd945d863d97273 (patch) | |
tree | a5b961a6fa978ccc8e0fc72a291c935ec9bc5b54 /ecs/src/entity.rs | |
parent | 68cd17ebb23a47ac9a022e7f303720ff5e28499f (diff) |
Diffstat (limited to 'ecs/src/entity.rs')
-rw-r--r-- | ecs/src/entity.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ecs/src/entity.rs b/ecs/src/entity.rs index 16f881d..bec50cd 100644 --- a/ecs/src/entity.rs +++ b/ecs/src/entity.rs @@ -15,6 +15,8 @@ use crate::component::{ use crate::uid::{Kind as UidKind, Uid}; use crate::{EntityComponentRef, World}; +pub mod obtainer; + /// A handle to a entity. #[derive(Debug)] pub struct Handle<'a> |