tick-machine 0.5.0

tick calculator
Documentation
1
2
3
4
5
6
7
8
9
10
11
# example
```rust 
let tick = Duration::from_millis(50);
let mut tick = TickState::new(tick);
loop {
    tick.try_tick(|| {
        println!("tick per 50ms");
    });
}

```