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

19 lines
279 B
C++

#ifndef STORAGEENTITY_H
#define STORAGEENTITY_H
#include "cargoentity.h"
#include <vector>
class StorageEntity
{
int _storage_id;
int _max_capacity;
std::vector<CargoEntity> _cargo;
public:
StorageEntity(int st_id, int mx_cap);
};
#endif // STORAGEENTITY_H