summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Bat.h
blob: c460e490cb8d29402e518760f781707697ccfa3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#pragma once

#include "PassiveMonster.h"





class cBat : public cPassiveMonster
{
	using Super = cPassiveMonster;

  public:
	cBat();

	CLASS_PROTODEF(cBat)

	bool IsHanging(void) const { return false; }
};