blob: eeb2afc5c39c73c9179544c3bbcf064a8b5b623b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#pragma once
#include "BlockRedstone.h"
#include "BlockTorch.h"
#include "../Torch.h"
class cBlockRedstoneTorchHandler : public cBlockTorchHandler
{
public:
cBlockRedstoneTorchHandler(BLOCKTYPE a_BlockID)
: cBlockTorchHandler(a_BlockID)
{
}
virtual int GetDropID(void) override
{
return E_ITEM_REDSTONE_TORCH_ON;
}
virtual AString GetStepSound(void) override
{
return "step.wood";
}
};
|