| 15 | } |
| 16 | |
| 17 | ItemDescriptor QuestItem::descriptor() const { |
| 18 | return ItemDescriptor(itemName, 1, parameters); |
| 19 | } |
| 20 | |
| 21 | bool QuestEntity::operator==(QuestEntity const& rhs) const { |
| 22 | return uniqueId == rhs.uniqueId && species == rhs.species && gender == rhs.gender; |
no test coverage detected