Skip to content

Instantly share code, notes, and snippets.

@shibbo
Created July 15, 2017 13:40
Show Gist options
  • Save shibbo/9b2510211da9f585c82b3eea213e4182 to your computer and use it in GitHub Desktop.
Save shibbo/9b2510211da9f585c82b3eea213e4182 to your computer and use it in GitHub Desktop.
#ifndef PATH_H
#define PATH_H
#include <objects/object.h>
class Path : public Object
{
public:
Path() {}
Path(FileBase* file, qint32 block14Offs);
void insertNode(PathNode* node, qint32 index);
protected:
QList<PathNode*> nodes;
qint8 id;
qint8 loops;
qint16 unk1;
};
#endif // PATH_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment