1
0
cuberite-2a/source/Mobs/Bat.h
Samuel Barney 318d552248 Merge branch 'MobSpawning' of https://github.com/mgueydan/MCServer into MobSpawning
Conflicts:
	source/Mobs/Bat.h
	source/Mobs/Monster.h
	source/World.cpp
2013-10-14 10:03:47 -06:00

26 lines
221 B
C++

#pragma once
#include "PassiveMonster.h"
class cBat :
public cPassiveMonster
{
typedef cPassiveMonster super;
public:
cBat(void);
CLASS_PROTODEF(cBat);
bool IsHanging(void) const {return false; }
} ;