Created
July 15, 2017 13:40
-
-
Save shibbo/f5f0a3e8e32657583a42318da04072a2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 PATHNODE_H | |
#define PATHNODE_H | |
#include <objects/object.h> | |
class PathNode : public Object | |
{ | |
public: | |
PathNode() {} | |
PathNode(FileBase* file, Path* path); | |
Path* path; | |
protected: | |
float speed; | |
float accel; | |
float unk1; | |
}; | |
#endif // PATHNODE_H |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment