blob: 8d05cd79970c843914714d0e9b9f5123d585d79c (
plain) (
tree)
|
|
#pragma once
#include "Block.h"
class cBlockGlowstoneHandler : public cBlockHandler
{
public:
cBlockGlowstoneHandler(BLOCKTYPE a_BlockID)
: cBlockHandler(a_BlockID)
{
}
virtual char GetDropMeta(char a_BlockMeta)
{
return 0;
}
virtual int GetDropID()
{
return E_ITEM_GLOWSTONE_DUST;
}
};
|