aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ContainerMenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/ContainerMenu.h')
-rw-r--r--Minecraft.World/ContainerMenu.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Minecraft.World/ContainerMenu.h b/Minecraft.World/ContainerMenu.h
index e6da0782..a738cdc3 100644
--- a/Minecraft.World/ContainerMenu.h
+++ b/Minecraft.World/ContainerMenu.h
@@ -7,16 +7,16 @@ class Container;
class ContainerMenu : public AbstractContainerMenu
{
private:
- shared_ptr<Container> container;
+ std::shared_ptr<Container> container;
int containerRows;
public:
- ContainerMenu(shared_ptr<Container> inventory, shared_ptr<Container> container);
+ ContainerMenu(std::shared_ptr<Container> inventory, std::shared_ptr<Container> container);
- virtual bool stillValid(shared_ptr<Player> player);
- virtual shared_ptr<ItemInstance> quickMoveStack(shared_ptr<Player> player, int slotIndex);
- void removed(shared_ptr<Player> player);
+ virtual bool stillValid(std::shared_ptr<Player> player);
+ virtual std::shared_ptr<ItemInstance> quickMoveStack(std::shared_ptr<Player> player, int slotIndex);
+ void removed(std::shared_ptr<Player> player);
// 4J ADDED,
- virtual shared_ptr<ItemInstance> clicked(int slotIndex, int buttonNum, int clickType, shared_ptr<Player> player);
+ virtual std::shared_ptr<ItemInstance> clicked(int slotIndex, int buttonNum, int clickType, std::shared_ptr<Player> player);
};