6352e8e319
all at once
16 lines
251 B
C++
16 lines
251 B
C++
#include "StarContainerEntity.hpp"
|
|
#include "StarItemBag.hpp"
|
|
|
|
namespace Star {
|
|
|
|
size_t ContainerEntity::containerSize() const {
|
|
return itemBag()->size();
|
|
}
|
|
|
|
List<ItemPtr> ContainerEntity::containerItems() const {
|
|
return itemBag()->items();
|
|
}
|
|
|
|
}
|
|
|