module charge.gfx.timer
Graphics

Source file for timers.

Code Map

//! Source file for timers.
module charge.gfx.timer;


struct Timer
{
public:
	fn setup() { }
	fn close() { }
	fn start() { }
	fn stop() { }
	fn getValue(val: GLuint64) bool { }
}