v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
15
source/game/interfaces/StarContainerEntity.cpp
Normal file
15
source/game/interfaces/StarContainerEntity.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "StarContainerEntity.hpp"
|
||||
#include "StarItemBag.hpp"
|
||||
|
||||
namespace Star {
|
||||
|
||||
size_t ContainerEntity::containerSize() const {
|
||||
return itemBag()->size();
|
||||
}
|
||||
|
||||
List<ItemPtr> ContainerEntity::containerItems() const {
|
||||
return itemBag()->items();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue