rust-sandbox / rust /src /utils /tick.rs
HugoDzz's picture
feat: 🚀
d5c39db
Raw
History Blame Contribute Delete
224 Bytes
use bevy::prelude::*;
/*
🦀 Resources and Components. Learn more: https://bevy-cheatbook.github.io/programming/res.html
*/
#[derive(Resource)]
pub struct TickCounter {
pub count: u32,
pub tick_rate: u32,
}