mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-14 14:44:22 +01:00
19 lines
356 B
C++
19 lines
356 B
C++
|
#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
|