1
0
cuberite-2a/src/UI/DropSpenserWindow.h
Mattes D c13b1931ff More style checking.
Spaces around some operators are checked.
2015-05-09 12:58:54 +02:00

33 lines
506 B
C++

// DropSpenserWindow.h
// Representing the UI window for the dropper / dispenser block
#pragma once
#include "Window.h"
#include "../BlockEntities/DropSpenserEntity.h"
class cDropSpenserWindow :
public cWindow
{
typedef cWindow super;
public:
cDropSpenserWindow(int a_BlockX, int a_BlockY, int a_BlockZ, cDropSpenserEntity * a_DropSpenser);
virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override;
};