A game loop with a fixed time step.
```rust use std::num::NonZeroU32;
use chron::clock;
let updatespersecond = NonZeroU32::new(10).unwrap(); let framespersecond = NonZeroU32::new(6).unwrap();
let clock = clock::Clock::new(updatespersecond) .withframelimit(framespersecond) .withframeskip(3);
for tick in clock { match tick { clock::Tick::Update => { // ... } clock::Tick::Render { interpolation } => { // ... } } } ```