f6ae6002c3
Workbench, Chest and Furnace are usable again git-svn-id: http://mc-server.googlecode.com/svn/trunk@755 0a769ca7-a7f5-676a-18bf-c427514a06d6
26 lines
501 B
C++
26 lines
501 B
C++
#pragma once
|
|
#include "Block.h"
|
|
#include "../cCraftingWindow.h"
|
|
#include "../cPlayer.h"
|
|
|
|
class cBlockWorkbenchHandler : public cBlockHandler
|
|
{
|
|
public:
|
|
cBlockWorkbenchHandler(BLOCKTYPE a_BlockID)
|
|
: cBlockHandler(a_BlockID)
|
|
{
|
|
}
|
|
|
|
virtual void OnUse(cWorld *a_World, cPlayer *a_Player, int a_X, int a_Y, int a_Z) override
|
|
{
|
|
cWindow* Window = new cCraftingWindow(0, true);
|
|
a_Player->OpenWindow(Window);
|
|
}
|
|
|
|
virtual bool IsUseable() override
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
}; |