December 2014 files
This commit is contained in:
@@ -14,23 +14,21 @@ private:
|
||||
public:
|
||||
CompoundContainer(int name, shared_ptr<Container> c1, shared_ptr<Container> c2);
|
||||
|
||||
unsigned int getContainerSize();
|
||||
|
||||
int getName();
|
||||
|
||||
shared_ptr<ItemInstance> getItem(unsigned int slot);
|
||||
|
||||
shared_ptr<ItemInstance> removeItem(unsigned int slot, int i);
|
||||
shared_ptr<ItemInstance> removeItemNoUpdate(int slot);
|
||||
|
||||
void setItem(unsigned int slot, shared_ptr<ItemInstance> item);
|
||||
|
||||
int getMaxStackSize();
|
||||
|
||||
void setChanged();
|
||||
|
||||
bool stillValid(shared_ptr<Player> player);
|
||||
virtual int getContainerType();
|
||||
virtual unsigned int getContainerSize();
|
||||
virtual bool contains(shared_ptr<Container> c);
|
||||
virtual wstring getName();
|
||||
virtual wstring getCustomName();
|
||||
virtual bool hasCustomName();
|
||||
virtual shared_ptr<ItemInstance> getItem(unsigned int slot);
|
||||
virtual shared_ptr<ItemInstance> removeItem(unsigned int slot, int i);
|
||||
virtual shared_ptr<ItemInstance> removeItemNoUpdate(int slot);
|
||||
virtual void setItem(unsigned int slot, shared_ptr<ItemInstance> item);
|
||||
virtual int getMaxStackSize();
|
||||
virtual void setChanged();
|
||||
virtual bool stillValid(shared_ptr<Player> player);
|
||||
|
||||
virtual void startOpen();
|
||||
virtual void stopOpen();
|
||||
virtual bool canPlaceItem(int slot, shared_ptr<ItemInstance> item);
|
||||
};
|
||||
Reference in New Issue
Block a user