18 lines
313 B
C
18 lines
313 B
C
#ifndef effects_H
|
|
#define effects_H
|
|
|
|
#include <SimpleList.h>
|
|
#include "EffectEntry.h"
|
|
#include "Effect.h"
|
|
#include "effect_clock.h"
|
|
|
|
extern SimpleList<EffectEntry>* effects;
|
|
extern SimpleList<Effect*>* cycle_effects;
|
|
|
|
extern Effect* current_effect;
|
|
extern ClockEffect effect_clock;
|
|
|
|
void setup_effects();
|
|
|
|
#endif
|