aboutsummaryrefslogtreecommitdiff
path: root/plugins/movement/src/movement.rs
blob: 4c1390897724085dea77c3085442879c6de0a093 (plain) (blame)
1
2
3
4
5
use bevy::ecs::component::Component;

/// Indicates that an entity is **movable**, used for CHMovementPlugins systems to recognize it
#[derive(Component)]
pub struct Movement;