#pragma once #include "ItemSlot.h" #include "EventThrower.h" #include "ReferenceCounter.h" class Inventory : public EventThrower { private: Framework::RCArray *slots; protected: void addSlot( ItemSlot *slot ); public: Inventory(); virtual ~Inventory(); };