diff options
| author | HampusM <hampus@hampusmat.com> | 2026-06-13 18:13:59 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-06-13 18:13:59 +0200 |
| commit | 6107d9b8f6c02f4a0dbca081d7e028ec77f1c84b (patch) | |
| tree | 5d703492a8b5bddf7b1d3ba097a587a67c1b91ce /engine-ecs/src | |
| parent | cd4219fae7f29b9c3d96aee640cefb6b2639e1a8 (diff) | |
refactor(engine-ecs): make component::Info non-exhaustive
Diffstat (limited to 'engine-ecs/src')
| -rw-r--r-- | engine-ecs/src/component.rs | 1 |
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, |
