Skip to main content

concinnity_core/components/
interactable.rs

1// src/components/interactable.rs
2
3/// Marks an entity the player can interact with (press the interact key while
4/// close and facing it to trigger its behavior).
5///
6/// Runtime-only zero-size tag. Present on an entity whose `Prop` set
7/// `interactable`.
8#[derive(Debug, Clone, Copy, Default)]
9pub struct Interactable;