4df23d19b7
git-svn-id: http://mc-server.googlecode.com/svn/trunk@902 0a769ca7-a7f5-676a-18bf-c427514a06d6
36 lines
627 B
C++
36 lines
627 B
C++
#pragma once
|
|
#include "BlockHandler.h"
|
|
#include "../UI/Window.h"
|
|
#include "../Player.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockWorkbenchHandler:
|
|
public cBlockHandler
|
|
{
|
|
public:
|
|
cBlockWorkbenchHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
virtual void OnUse(cWorld * a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) override
|
|
{
|
|
cWindow * Window = new cCraftingWindow(a_BlockX, a_BlockY, a_BlockZ);
|
|
a_Player->OpenWindow(Window);
|
|
}
|
|
|
|
virtual bool IsUseable() override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
virtual AString GetStepSound(void) override
|
|
{
|
|
return "step.wood";
|
|
}
|
|
|
|
|
|
}; |