summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewMooshroom.h
blob: 2e10ad0a30df417c7c0f87e0df6197fe2a0efc00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#pragma once

#include "NewMonster.h"





class cNewMooshroom :
	public cNewMonster
{
	typedef cNewMonster super;
	
public:
	cNewMooshroom(void);

	CLASS_PROTODEF(cNewMooshroom)

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
} ;