2016-05-31 05:58:58 +02:00
|
|
|
#pragma once
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
#include "modules/meta.hpp"
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
LEMONBUDDY_NS
|
|
|
|
|
|
|
|
using namespace drawtypes;
|
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
class counter_module : public timer_module<counter_module> {
|
|
|
|
public:
|
|
|
|
using timer_module::timer_module;
|
|
|
|
|
2016-11-02 20:22:45 +01:00
|
|
|
void setup();
|
|
|
|
bool update();
|
|
|
|
bool build(builder* builder, string tag) const;
|
2016-05-19 16:41:06 +02:00
|
|
|
|
2016-06-15 05:32:35 +02:00
|
|
|
private:
|
|
|
|
static constexpr auto TAG_COUNTER = "<counter>";
|
|
|
|
|
|
|
|
int m_counter{0};
|
2016-05-19 16:41:06 +02:00
|
|
|
};
|
|
|
|
}
|
2016-06-15 05:32:35 +02:00
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|