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

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

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


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