summaryrefslogtreecommitdiff
path: root/engine-ecs/src/stats.rs
blob: 2fe731b2c28b20ccfa0300046b3fa42090844cd8 (plain)
1
2
3
4
5
6
7
8
use crate::Sole;

#[derive(Debug, Default, Sole)]
#[non_exhaustive]
pub struct Stats
{
    pub current_tick: u64,
}