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

25 lines
283 B
C
Raw Normal View History

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