2012-12-21 06:04:08 -05:00
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "PassiveMonster.h"
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMooshroom :
|
|
|
|
public cPassiveMonster
|
2012-10-19 14:30:46 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
typedef cPassiveMonster super;
|
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
public:
|
2012-12-21 06:04:08 -05:00
|
|
|
cMooshroom(void);
|
|
|
|
|
|
|
|
virtual bool IsA(const char * a_EntityType);
|
|
|
|
|
|
|
|
virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2012-10-19 14:30:46 -04:00
|
|
|
|
|
|
|
|