| 62 | } |
| 63 | |
| 64 | void EntityDescription::AddInt(EntityDescriptionFieldType type, const int& val) { |
| 65 | AddType(type); |
| 66 | fields.back().WriteInt(val); |
| 67 | } |
| 68 | |
| 69 | void EntityDescription::AddMat4(EntityDescriptionFieldType type, const mat4& val) { |
| 70 | AddType(type); |
no test coverage detected