A small package for calling a function at a desired interval
``` fn main() { let dur = Duration::new(1, 0) // One second and 0 ms UpdateFunctions::update(dur, Update) }
pub fn Update() { println!("Updating!"); } ```
In cargo.toml
UpdateFunctions = "0.1.3"