Program Listing for File animationtype.h

Return to documentation for file (src/animation/animationtype.h)

/*
 * AnimationType - List of available Animations.
 */

#ifndef ANIMATIONTYPE_H
#define ANIMATIONTYPE_H

namespace PixelMaestro {
    enum class AnimationType : uint8_t {
        Blink,
        Cycle,
        Fire,
        Lightning,
        Mandelbrot,
        Plasma,
        Radial,
        Random,
        Solid,
        Sparkle,
        Wave,
        VUMeter
    };
}

#endif // ANIMATIONTYPE_H