#ifndef CLOCK_H
#define CLOCK_H
/**
 * The Clock, simply just a container for a global variable which gets incremented.
 */
class Clock {
	public:
	/**
	 * The clock time
	 * */
	static int clock;
};
#endif
