mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
17 lines
256 B
C++
17 lines
256 B
C++
#ifndef APPS_CLOCK_TIMER_H
|
|
#define APPS_CLOCK_TIMER_H
|
|
|
|
#include <escher.h>
|
|
|
|
class AppsContainer;
|
|
|
|
class ClockTimer : public Timer {
|
|
public:
|
|
ClockTimer(AppsContainer * container);
|
|
private:
|
|
bool fire() override;
|
|
AppsContainer * m_container;
|
|
};
|
|
|
|
#endif
|