2012-12-21 03:04:08 -08:00
|
|
|
|
2012-11-01 03:56:47 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
2012-12-21 03:04:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBat :
|
|
|
|
public cPassiveMonster
|
2012-11-01 03:56:47 -07:00
|
|
|
{
|
2012-12-21 03:04:08 -08:00
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
2012-11-01 03:56:47 -07:00
|
|
|
public:
|
2012-12-21 03:04:08 -08:00
|
|
|
cBat(void);
|
|
|
|
|
2012-12-21 04:21:20 -08:00
|
|
|
CLASS_PROTODEF(cBat);
|
2012-12-21 03:04:08 -08:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-11-01 03:56:47 -07:00
|
|
|
|
|
|
|
|