1
0
cuberite-2a/src/Blocks/BlockLilypad.h

25 lines
283 B
C
Raw Normal View History

2014-03-23 18:32:45 -04:00
#pragma once
#include "BlockHandler.h"
#include "Entities/Pickup.h"
2014-03-23 18:32:45 -04:00
class cBlockLilypadHandler :
2014-07-14 19:01:16 -04:00
public cClearMetaOnDrop<cBlockHandler>
2014-03-23 18:32:45 -04:00
{
2014-07-15 08:54:24 -04:00
typedef cClearMetaOnDrop<cBlockHandler> super;
2014-03-23 18:32:45 -04:00
public:
2014-07-15 08:54:24 -04:00
cBlockLilypadHandler(BLOCKTYPE a_BlockType) :
super(a_BlockType)
2014-03-23 18:32:45 -04:00
{
}
};