summaryrefslogtreecommitdiffstats
path: root/src/UI/SlotArea.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-02-28 16:26:23 +0100
committermadmaxoft <github@xoft.cz>2014-02-28 16:26:23 +0100
commit182646188448f9fd8df0b4c0391a2db04575c49d (patch)
treeb823a35f67ab8d5b0f32bb4beea6710667332425 /src/UI/SlotArea.h
parentDocumented the changes in cJukeboxEntity. (diff)
downloadcuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar.gz
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar.bz2
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar.lz
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar.xz
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.tar.zst
cuberite-182646188448f9fd8df0b4c0391a2db04575c49d.zip
Diffstat (limited to 'src/UI/SlotArea.h')
-rw-r--r--src/UI/SlotArea.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/UI/SlotArea.h b/src/UI/SlotArea.h
index d31c87e0c..25b367cff 100644
--- a/src/UI/SlotArea.h
+++ b/src/UI/SlotArea.h
@@ -48,10 +48,10 @@ public:
virtual void DblClicked(cPlayer & a_Player, int a_SlotNum);
/// Called when a new player opens the same parent window. The window already tracks the player. CS-locked.
- virtual void OnPlayerAdded(cPlayer & a_Player) {} ;
+ virtual void OnPlayerAdded(cPlayer & a_Player);
/// Called when one of the players closes the parent window. The window already doesn't track the player. CS-locked.
- virtual void OnPlayerRemoved(cPlayer & a_Player) {} ;
+ virtual void OnPlayerRemoved(cPlayer & a_Player);
/** Called to store as much of a_ItemStack in the area as possible. a_ItemStack is modified to reflect the change.
The default implementation searches each slot for available space and distributes the stack there.
@@ -226,7 +226,7 @@ public:
virtual void OnPlayerRemoved(cPlayer & a_Player) override;
// Distributing items into this area is completely disabled
- virtual void DistributeStack(cItem & a_ItemStack, cPlayer & a_Player, bool a_ShouldApply, bool a_KeepEmptySlots) override {}
+ virtual void DistributeStack(cItem & a_ItemStack, cPlayer & a_Player, bool a_ShouldApply, bool a_KeepEmptySlots) override;
protected:
/// Maps player's EntityID -> current recipe; not a std::map because cCraftingGrid needs proper constructor params