1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Timing module for frame-based applications
//!
//! Contains methods for slowing down to a fixed framerate, as well as
//! measuring actual frames per second.

extern crate time;

pub mod clock;

// Module currently disabled, until I have time (no pun intended) to update
// the API:
// pub mod framecounter;