#![no_std]
mod duration;
mod frame_index;
mod frame_rate;
mod frame_stepper;
pub(crate) mod macros;
mod scalar;
mod time;
mod time_range;
#[cfg(test)]
mod example;
pub mod conversion;
pub use self::{
duration::{Duration, HasDuration},
frame_index::FrameIndex,
frame_rate::FrameRate,
frame_stepper::FrameStepper,
scalar::FloatScalar,
time::Time,
time_range::{HasTimeRange, TimeRange},
};