blob: c694eb331cdb0ee343694fa4df4476a6f999f6f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
// The mob will wander around
#include <chrono>
#include "Behavior.h"
class cBehaviorWanderer : cBehavior
{
public:
cBehaviorWanderer();
void AttachToMonster(cMonster & a_Parent);
// Functions our host Monster should invoke:
bool IsControlDesired(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
private:
cMonster * m_Parent; // Our Parent
std::chrono::milliseconds m_IdleInterval;
};
|