Abstraction and serialization for entities

This commit is contained in:
Andrew nuark G 2020-12-15 20:17:46 +07:00
parent 5cb96fb793
commit 48ad2f1817
13 changed files with 106 additions and 12 deletions

View file

@ -22,3 +22,11 @@ unsigned int vessel_entity::capacity() {
const QVector<cargo_entity> vessel_entity::cargo() {
return this->_cargo;
}
void vessel_entity::serialize(QDataStream &output) {
output << this->_id << this->_harbor << this->_capacity << this->_cargo;
}
void vessel_entity::deserialize(QDataStream &input) {
input >> this->_id >> this->_harbor >> this->_capacity >> this->_cargo;
}