| 618 | } |
| 619 | |
| 620 | void EntityDescription::AddBool(EntityDescriptionFieldType type, const bool& val) { |
| 621 | AddType(type); |
| 622 | char in = val ? 1 : 0; |
| 623 | memwrite(&in, sizeof(char), 1, fields.back().data); |
| 624 | } |
| 625 | |
| 626 | void GetTSREinfo(const TiXmlElement* pElement, vec3& translation, vec3& scale, quaternion& rotation, vec3& rotation_euler) { |
| 627 | GetTSRinfo(pElement, translation, scale, rotation); |
no test coverage detected