Files
rez_demo/GL_STUFF/HEADERS/UTILS/ClockIterator.hpp

12 lines
257 B
C++
Raw Normal View History

#pragma once
class ClockIterator {
private:
unsigned int max;
unsigned int counter;
public:
ClockIterator(unsigned int loopMillis);
unsigned int step(unsigned int millis);
float getPercentage();
unsigned int getPosition();
void reset();
};