HugoDzz's picture
feat: πŸš€
d5c39db
raw
history blame
No virus
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,
}