thomas 0.2.4

An ECS game engine.
Documentation
1
2
3
4
5
6
7
8
9
use crate::{Component, Timer};

/// Represents stats tracked by the engine to report on its performance.
#[derive(Component)]
pub struct EngineStats {
    pub fps: u64,
    pub(crate) frame_timer: Timer,
    pub(crate) frame_counter: u64,
}