bones_framework/
time.rs

1//! [`Timer`] and [`Stopwatch`] utilities.
2
3mod stopwatch;
4mod timer;
5pub use stopwatch::*;
6pub use timer::*;