2012-07-15 16:36:34 -04:00
|
|
|
#pragma once
|
|
|
|
#include "Block.h"
|
2012-07-16 15:20:37 -04:00
|
|
|
#include "../cStairs.h"
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
class cBlockStairsHandler : public cBlockHandler
|
|
|
|
{
|
|
|
|
public:
|
2012-07-16 15:20:37 -04:00
|
|
|
cBlockStairsHandler(BLOCKTYPE a_BlockID)
|
|
|
|
: cBlockHandler(a_BlockID)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2012-07-15 16:36:34 -04:00
|
|
|
|
|
|
|
|
2012-07-16 15:20:37 -04:00
|
|
|
virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, NIBBLETYPE a_BlockMeta, int a_X, int a_Y, int a_Z, char a_Dir) override
|
|
|
|
{
|
|
|
|
a_World->SetBlock(a_X, a_Y, a_Z, m_BlockID, cStairs::RotationToMetaData(a_Player->GetRotation(), a_Dir));
|
|
|
|
OnPlacedByPlayer(a_World, a_Player, a_X, a_Y, a_Z, a_Dir);
|
|
|
|
}
|
2012-07-15 16:36:34 -04:00
|
|
|
|
2012-09-11 08:01:34 -04:00
|
|
|
//TODO: step sound
|
|
|
|
};
|