Feck forward declaration

This commit is contained in:
unknown 2020-09-19 08:27:52 +07:00
parent a22680711e
commit 9622afb211
4 changed files with 12 additions and 4 deletions

View file

@ -5,7 +5,8 @@
#include <vector>
class DeliveryPointEntity;
class CargoEntity;
class StorageEntity
{
int _storage_id;
@ -13,6 +14,7 @@ class StorageEntity
std::vector<CargoEntity> _cargo;
public:
StorageEntity();
StorageEntity(int st_id, int mx_cap);
};