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,
}