Skip to content

Instantly share code, notes, and snippets.

@shibbo
Created July 15, 2017 13:40
Show Gist options
  • Save shibbo/f5f0a3e8e32657583a42318da04072a2 to your computer and use it in GitHub Desktop.
Save shibbo/f5f0a3e8e32657583a42318da04072a2 to your computer and use it in GitHub Desktop.
#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