summaryrefslogtreecommitdiffstats
path: root/src/UI/HorseWindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/UI/HorseWindow.h')
-rw-r--r--src/UI/HorseWindow.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/UI/HorseWindow.h b/src/UI/HorseWindow.h
index 77bc2d627..76e8a22b5 100644
--- a/src/UI/HorseWindow.h
+++ b/src/UI/HorseWindow.h
@@ -13,22 +13,24 @@ class cHorse;
-class cHorseWindow :
- public cWindow
+class cHorseWindow : public cWindow
{
using Super = cWindow;
-public:
+
+ public:
cHorseWindow(cHorse & a_Horse);
- virtual void DistributeStack(cItem & a_ItemStack, int a_Slot, cPlayer & a_Player, cSlotArea * a_ClickedArea, bool a_ShouldApply) override;
+ virtual void DistributeStack(
+ cItem & a_ItemStack,
+ int a_Slot,
+ cPlayer & a_Player,
+ cSlotArea * a_ClickedArea,
+ bool a_ShouldApply
+ ) override;
/** Returns the horse's entity ID. */
UInt32 GetHorseID() const;
-private:
+ private:
cHorse & m_Horse;
};
-
-
-
-