Created
July 15, 2017 13:40
-
-
Save shibbo/9b2510211da9f585c82b3eea213e4182 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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