blob: 42d3a0366aa97b6c93d3243ef1e65d98ef7ae7b1 (
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 "../cTorch.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";
}
};
|