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