| 77 | } |
| 78 | |
| 79 | void EntityDescription::AddEntityType(EntityDescriptionFieldType type, const EntityType& val) { |
| 80 | AddType(type); |
| 81 | int the_type = val; |
| 82 | memwrite(&the_type, sizeof(int), 1, fields.back().data); |
| 83 | } |
| 84 | |
| 85 | void EntityDescription::AddIntVec(EntityDescriptionFieldType type, const std::vector<int>& val) { |
| 86 | AddType(type); |
no test coverage detected