summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Bat.cpp
blob: 28ae76f6f8cedde6aa225b2d9b663afb73c0fcb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#include "Globals.h"  // NOTE: MSVC stupidness requires this to be the same across all modules

#include "Bat.h"
#include "../Chunk.h"


cBat::cBat(void) :
	Super("Bat", mtBat, "entity.bat.hurt", "entity.bat.death", "entity.bat.ambient", 0.5f, 0.9f)
{
	SetGravity(-2.0f);
	SetAirDrag(0.05f);
}