mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 19:32:49 +01:00
23 lines
341 B
C++
23 lines
341 B
C++
#pragma once
|
|
#ifndef _AIGRAPH_HPP_
|
|
#define _AIGRAPH_HPP_
|
|
#include <vector>
|
|
#include <glm/gtc/quaternion.hpp>
|
|
#include <data/PathData.hpp>
|
|
|
|
struct AIGraphNode;
|
|
|
|
class AIGraph
|
|
{
|
|
public:
|
|
|
|
~AIGraph();
|
|
|
|
std::vector<AIGraphNode*> nodes;
|
|
|
|
void createPathNodes(const glm::vec3& position, const glm::quat& rotation, PathData& path);
|
|
|
|
};
|
|
|
|
#endif
|