318d552248
Conflicts: source/Mobs/Bat.h source/Mobs/Monster.h source/World.cpp
26 lines
221 B
C++
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; }
|
|
} ;
|
|
|
|
|
|
|
|
|