blob: 780827910f9229b20ea88ef515df34a52a532856 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
// mobTodo I just need vector3d
#include "Behavior.h"
#include "../../World.h"
class cBehaviorDayLightBurner : cBehavior
{
public:
void AttachToMonster(cMonster & a_Parent);
void PostTick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
bool WouldBurnAt(Vector3d a_Location, cChunk & a_Chunk);
// Functions our host Monster should invoke:
void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
private:
cMonster * m_Parent; // Our Parent
cEntity * m_Attacker; // The entity we're running away from
};
|