Select Git revision
AddTaskReducer.js
Forked from
KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
Source project has a limited visibility.
-
Bereczki Sandor authored
You can now create new tasks and upload a solution (or more) for them.
Bereczki Sandor authoredYou can now create new tasks and upload a solution (or more) for them.
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