use "ARCH=arch_name make" restructured project folder, implementations and headers together under sources/
14 lines
248 B
C++
Executable File
14 lines
248 B
C++
Executable File
#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();
|
|
};
|