Skip to main content

concinnity_core/components/
prop_instance.rs

1// src/components/prop_instance.rs
2
3/// Marks an entity that was authored as a `Prop`.
4///
5/// Runtime-only zero-size tag. The `Prop` column is drained once its
6/// placement has been decomposed into per-instance components, so this is
7/// what identifies a prop's entity from the first tick onward. A behavior
8/// scoped to `"Prop"` resolves to this tag, matching model- and mesh-backed
9/// props alike.
10#[derive(Debug, Clone, Copy, Default)]
11pub struct PropInstance;