Splitting the code into single files is done. \o/

This commit is contained in:
2019-05-30 00:49:54 +02:00
parent 76802ffa78
commit 2f58fd14d0
45 changed files with 1142 additions and 834 deletions

20
include/effect_cycle.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef effect_cycle_H
#define effect_cycle_H
#include "Effect.h"
#include "effects.h"
class CycleEffect : public Effect {
private:
Effect* effect;
long effectSince = 0;
public:
void changeEffect();
boolean can_be_shown_with_clock();
boolean clock_as_mask();
void loop();
};
#endif