Command changes and code cleanup

This commit is contained in:
KimLS
2017-07-21 20:22:33 -07:00
parent ab33148f81
commit bdc90ac3a7
12 changed files with 253 additions and 2482 deletions
+16 -1
View File
@@ -9,7 +9,22 @@ class Seperator;
class IPathfinder
{
public:
typedef std::list<glm::vec3> IPath;
struct IPathNode
{
IPathNode(const glm::vec3 &p) {
pos = p;
teleport = false;
}
IPathNode(bool tp) {
teleport = tp;
}
glm::vec3 pos;
bool teleport;
};
typedef std::list<IPathNode> IPath;
IPathfinder() { }
virtual ~IPathfinder() { }