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

24 lines
281 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 11:27:36 +00:00
typedef cClearMetaOnDrop<cBlockHandler> super;
2014-03-23 22:32:45 +00:00
public:
cBlockLilypadHandler(BLOCKTYPE a_BlockType)
2014-07-15 11:27:36 +00:00
: super(a_BlockType)
2014-03-23 22:32:45 +00:00
{
}
};