summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockWorkbench.h
blob: 6c5f0d3e8a43920ef540c8d2c117a3a0719a9583 (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
27
28
29
30
31
#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;
	}

	virtual AString GetStepSound(void) override
	{
		return "step.wood";
	}
	
	
};