1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-14 14:44:22 +01:00
openrw/rwengine/include/ai/DefaultAIController.hpp

19 lines
356 B
C++
Raw Normal View History

2014-06-06 18:04:00 +02:00
#pragma once
#ifndef _DEFAULTAICONTROLLER_HPP_
#define _DEFAULTAICONTROLLER_HPP_
#include <ai/CharacterController.hpp>
#include <random>
struct AIGraphNode;
class DefaultAIController : public CharacterController
{
public:
DefaultAIController(CharacterObject* character)
: CharacterController(character) {}
glm::vec3 getTargetPosition();
};
#endif