mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-06 09:28:56 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -4,19 +4,22 @@
|
||||
|
||||
class Container;
|
||||
|
||||
class ContainerMenu : public AbstractContainerMenu
|
||||
{
|
||||
class ContainerMenu : public AbstractContainerMenu {
|
||||
private:
|
||||
std::shared_ptr<Container> container;
|
||||
int containerRows;
|
||||
std::shared_ptr<Container> container;
|
||||
int containerRows;
|
||||
|
||||
public:
|
||||
ContainerMenu(std::shared_ptr<Container> inventory, std::shared_ptr<Container> container);
|
||||
ContainerMenu(std::shared_ptr<Container> inventory,
|
||||
std::shared_ptr<Container> container);
|
||||
|
||||
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);
|
||||
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 std::shared_ptr<ItemInstance> clicked(int slotIndex, int buttonNum, int clickType, std::shared_ptr<Player> player);
|
||||
// 4J ADDED,
|
||||
virtual std::shared_ptr<ItemInstance> clicked(
|
||||
int slotIndex, int buttonNum, int clickType,
|
||||
std::shared_ptr<Player> player);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user