2015-09-24 04:48:33 -04:00
|
|
|
|
|
|
|
// BrewingstandWindow.h
|
|
|
|
|
|
|
|
// Representing the UI window for the brewing stand block
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Window.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBrewingstandWindow :
|
|
|
|
public cWindow
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cWindow;
|
2015-09-24 04:48:33 -04:00
|
|
|
|
|
|
|
public:
|
2019-09-29 08:59:24 -04:00
|
|
|
|
|
|
|
cBrewingstandWindow(cBrewingstandEntity * a_Brewingstand);
|
2015-09-24 04:48:33 -04:00
|
|
|
|
|
|
|
virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|