1
0

Fixed code formatting.

This commit is contained in:
madmaxoft 2014-07-15 14:54:24 +02:00
parent 639dfdb67d
commit 9a970479ef
2 changed files with 9 additions and 6 deletions

View File

@ -10,10 +10,11 @@
class cBlockLilypadHandler :
public cClearMetaOnDrop<cBlockHandler>
{
typedef cClearMetaOnDrop<cBlockHandler> super;
typedef cClearMetaOnDrop<cBlockHandler> super;
public:
cBlockLilypadHandler(BLOCKTYPE a_BlockType)
: super(a_BlockType)
cBlockLilypadHandler(BLOCKTYPE a_BlockType) :
super(a_BlockType)
{
}
};

View File

@ -8,12 +8,14 @@
class cBlockPumpkinHandler :
public cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x03, 0x00, 0x01, false> >
{
typedef cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x03, 0x00, 0x01, false> > super;
typedef cClearMetaOnDrop<cMetaRotator<cBlockHandler, 0x07, 0x02, 0x03, 0x00, 0x01, false> > super;
public:
cBlockPumpkinHandler(BLOCKTYPE a_BlockType)
: super(a_BlockType)
cBlockPumpkinHandler(BLOCKTYPE a_BlockType) :
super(a_BlockType)
{
}
virtual void OnPlacedByPlayer(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) override
{