sea_transport_project/storageentity.cpp
2020-09-10 00:43:40 +07:00

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);
}