summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Behaviors/BehaviorItemDropper.h
blob: 64d2f761ea904acd509418253707d138257e23a0 (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
24
25
#pragma once

// mobTodo a more generic, not chickenspecific dropper

#include "Behavior.h"

/** Makes the mob periodically drop eggs. MobTodo: Make this more generic.

Connections to other behaviors:
 - None

Special connections:
 - None.

*/
class cBehaviorItemDropper : cBehavior
{
public:
	void AttachToMonster(cMonster & a_Parent);
	void PostTick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)  override;

private:
		cMonster * m_Parent;  // Our Parent
		int m_EggDropTimer;
};