8 lines
183 B
C++
8 lines
183 B
C++
#include "storageentity.h"
|
|
|
|
StorageEntity::StorageEntity(int st_id, int mx_cap)
|
|
{
|
|
this->_storage_id = st_id;
|
|
this->_max_capacity = mx_cap;
|
|
this->_cargo.reserve(mx_cap);
|
|
}
|