Skip to main content

steel_core/behavior/items/
default.rs

1//! Default item behavior implementation.
2
3use crate::behavior::ItemBehavior;
4
5/// Vanilla's base item behavior.
6///
7/// Shared component-driven behavior belongs on [`ItemBehavior`]'s default
8/// methods so specialized items inherit it too.
9pub struct DefaultItemBehavior;
10
11impl ItemBehavior for DefaultItemBehavior {}