Abstraction and serialization for entities
This commit is contained in:
parent
5cb96fb793
commit
48ad2f1817
13 changed files with 106 additions and 12 deletions
|
|
@ -19,3 +19,11 @@ unsigned int storage_entity::capacity() {
|
|||
const QVector<cargo_entity> storage_entity::cargo() {
|
||||
return this->_cargo;
|
||||
}
|
||||
|
||||
void storage_entity::serialize(QDataStream &output) {
|
||||
output << this->_id << this->_capacity << this->_cargo;
|
||||
}
|
||||
|
||||
void storage_entity::deserialize(QDataStream &input) {
|
||||
input >> this->_id >> this->_capacity >> this->_cargo;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue