1
0
cuberite-2a/src/Blocks/BlockGlazedTerracotta.h

20 lines
361 B
C
Raw Normal View History

2020-04-07 22:28:51 +00:00
#pragma once
#include "BlockHandler.h"
#include "Mixins.h"
class cBlockGlazedTerracottaHandler:
public cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x3, 0x1, 0x3, 0x0, 0x2>>
2020-04-07 22:28:51 +00:00
{
using super = cClearMetaOnDrop<cYawRotator<cBlockHandler, 0x3, 0x1, 0x3, 0x0, 0x2>>;
2020-04-07 22:28:51 +00:00
public:
cBlockGlazedTerracottaHandler(BLOCKTYPE a_BlockType) : super(a_BlockType)
{
}
};