blob: 1320174fc126b3bdfb41480206502b5ef8e0b38e (
plain) (
tree)
|
|
#pragma once
#include "BlockHandler.h"
#include "Entities/Pickup.h"
class cBlockLilypadHandler :
public cClearMetaOnDrop<cBlockHandler>
{
typedef cClearMetaOnDrop<cBlockHandler> super;
public:
cBlockLilypadHandler(BLOCKTYPE a_BlockType)
: super(a_BlockType)
{
}
};
|