12345678910111213141516171819 |
- #pragma once
- #include "ItemStack.h"
- #include "Area.h"
- class ItemSlot : public virtual Framework::ReferenceCounter
- {
- private:
- ItemStack *items;
- int maxSize;
- Directions allowedPullSide;
- Directions allowedPushSides;
- int pullPriority;
- int pushPriority;
- bool allowHigherStackSize;
- public:
- ItemSlot( int maxSize, int pullPriority, int pushPriority, int allowedPullSide, int allowedPushSides, bool allowHigherStackSize );
- };
|