summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockWorkbench.h
blob: d654ca66695cb95b251296a0af2873e532b6c199 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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 OnClick(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;
	}
	
	
};