diff options
| author | HampusM <hampus@hampusmat.com> | 2026-07-08 23:30:50 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-07-08 23:30:50 +0200 |
| commit | 0b78c7da4980c90c2feca1ef7e0ee898db084486 (patch) | |
| tree | ba2f033b004e44b73737e502274117357e022d24 /engine-ecs/src/util.rs | |
| parent | a34ad021ab4d3330e28e5489b24be7dd23c89808 (diff) | |
feat(engine-ecs): add fns for spawning named entities
Diffstat (limited to 'engine-ecs/src/util.rs')
| -rw-r--r-- | engine-ecs/src/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine-ecs/src/util.rs b/engine-ecs/src/util.rs index a6bd14b..f56a5c4 100644 --- a/engine-ecs/src/util.rs +++ b/engine-ecs/src/util.rs @@ -185,7 +185,7 @@ where pub trait Array<Item>: AsRef<[Item]> + AsMut<[Item]> - + IntoIterator<Item = Item> + + IntoIterator<Item = Item, IntoIter: ExactSizeIterator> + Into<Vec<Item>> + Sortable<Item = Item> + sealed::Sealed |
