Skip to content
Snippets Groups Projects
Select Git revision
  • 7b14f0ea0c05b4d0370bc64b570d97c3b9a8cc5a
  • master default protected
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.19
  • 1.0.18
  • 1.0.17
  • 1.0.16
  • 1.0.15
  • 1.0.14
  • 1.0.13
  • 1.0.12
  • 1.0.10
  • 1.0.9
  • 1.0.8
22 results

AddTaskReducer.js

Blame
  • Forked from KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
    Source project has a limited visibility.
    animation.h 377 B
    #ifndef ANIMATION_H
    #define ANIMATION_H
    
    #include <QFile>
    #include <QString>
    #include <vector>
    #include "mxframe.h"
    #include "spiframe.h"
    #include <tuple>
    
    class Animation
    {
    private:
        std::vector<MxFrame> frames;
        uint32_t frameId = 0;
    public:
        Animation();
        void openFile(const QString filepath);
        MxFrame nextFrame();
        bool eof();
    };
    
    #endif // ANIMATION_H