Skip to main content

concinnity_core/components/
pickup.rs

1// src/components/pickup.rs
2
3/// Marks an entity the player can pick up and carry with the interact key.
4///
5/// Runtime-only zero-size tag. Present on an entity whose `Prop` set `pickup`.
6#[derive(Debug, Clone, Copy, Default)]
7pub struct Pickup;