December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include "AbstractContainerMenu.h"
class HopperMenu : public AbstractContainerMenu
{
private:
shared_ptr<Container> hopper;
public:
static const int CONTENTS_SLOT_START = 0;
static const int INV_SLOT_START = CONTENTS_SLOT_START + 5;
static const int INV_SLOT_END = INV_SLOT_START + 9 * 3;
static const int USE_ROW_SLOT_START = INV_SLOT_END;
static const int USE_ROW_SLOT_END = USE_ROW_SLOT_START + 9;
public:
HopperMenu(shared_ptr<Container> inventory, shared_ptr<Container> hopper);
bool stillValid(shared_ptr<Player> player);
shared_ptr<ItemInstance> quickMoveStack(shared_ptr<Player> player, int slotIndex);
void removed(shared_ptr<Player> player);
shared_ptr<Container> getContainer();
};