2012-07-15 13:36:34 -07:00
|
|
|
#pragma once
|
|
|
|
#include "Block.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockPistonHandler : public cBlockHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cBlockPistonHandler(BLOCKTYPE a_BlockID);
|
2012-07-16 12:20:37 -07:00
|
|
|
virtual void OnPlaced(cWorld *a_World, int a_X, int a_Y, int a_Z, int a_Dir) override;
|
|
|
|
virtual void OnDestroyed(cWorld *a_World, int a_X, int a_Y, int a_Z) override;
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
|
2012-07-16 12:20:37 -07: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;
|
2012-07-15 13:36:34 -07:00
|
|
|
|
|
|
|
};
|