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