mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
11 lines
338 B
C++
11 lines
338 B
C++
#pragma once
|
|
|
|
#include "Container.h"
|
|
|
|
class WorldlyContainer : public Container
|
|
{
|
|
public:
|
|
virtual intArray getSlotsForFace(int face) = 0;
|
|
virtual bool canPlaceItemThroughFace(int slot, shared_ptr<ItemInstance> item, int face) = 0;
|
|
virtual bool canTakeItemThroughFace(int slot, shared_ptr<ItemInstance> item, int face) = 0;
|
|
}; |