#pragma once #ifndef _AIGRAPH_HPP_ #define _AIGRAPH_HPP_ #include #include #include struct AIGraphNode; class AIGraph { public: ~AIGraph(); std::vector nodes; void createPathNodes(const glm::vec3& position, const glm::quat& rotation, PathData& path); }; #endif