Add entities w/out logic

This commit is contained in:
Andrew 2020-09-10 00:43:40 +07:00
parent 1bda2c4047
commit 415ede2b91
11 changed files with 153 additions and 8 deletions

8
storageentity.cpp Normal file
View file

@ -0,0 +1,8 @@
#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);
}