aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/tick.rs
blob: c6f02c129ce09bc8bc316f355d4145925ea13508 (plain)
1
2
3
4
5
6
7
8
use bevy_ecs::schedule::ScheduleLabel;

/// A Bevy schedule that runs every Minecraft game tick, i.e. every 50ms.
///
/// Many client systems run on this schedule, the most important one being
/// physics.
#[derive(ScheduleLabel, Hash, Copy, Clone, Debug, Default, Eq, PartialEq)]
pub struct GameTick;