mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +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
|