summaryrefslogtreecommitdiff
path: root/engine-ecs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-06-13 18:13:59 +0200
committerHampusM <hampus@hampusmat.com>2026-06-13 18:13:59 +0200
commit6107d9b8f6c02f4a0dbca081d7e028ec77f1c84b (patch)
tree5d703492a8b5bddf7b1d3ba097a587a67c1b91ce /engine-ecs
parentcd4219fae7f29b9c3d96aee640cefb6b2639e1a8 (diff)
refactor(engine-ecs): make component::Info non-exhaustive
Diffstat (limited to 'engine-ecs')
-rw-r--r--engine-ecs/src/component.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/engine-ecs/src/component.rs b/engine-ecs/src/component.rs
index c163325..681e546 100644
--- a/engine-ecs/src/component.rs
+++ b/engine-ecs/src/component.rs
@@ -375,6 +375,7 @@ impl Default for PartsBuilder
}
#[derive(Debug, Clone, Component)]
+#[non_exhaustive]
pub struct Info
{
pub type_reflection: &'static crate::reflection::Type,