blob: 44ebd7012071379d66dff0e0d44b600c4441f5d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "BlockHandler.h"
#include "Mixins.h"
class cBlockGlazedTerracottaHandler:
public cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x3, 0x1, 0x3, 0x0, 0x2>>
{
using super = cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x3, 0x1, 0x3, 0x0, 0x2>>;
public:
cBlockGlazedTerracottaHandler(BLOCKTYPE a_BlockType) : super(a_BlockType)
{
}
};
|