Program Listing for File randomanimation.h¶
↰ Return to documentation for file (src/animation/randomanimation.h
)
#ifndef RANDOMANIMATION_H
#define RANDOMANIMATION_H
#include "animation.h"
namespace PixelMaestro {
class RandomAnimation : public Animation {
public:
explicit RandomAnimation(Section& section);
~RandomAnimation() = default;
void map();
void update();
};
}
#endif // RANDOMANIMATION_H