| 81 | } |
| 82 | |
| 83 | std::span<const BadgeID> GetTypeBadges(int cls_id, int id) const override |
| 84 | { |
| 85 | const auto *spec = this->GetSpec(cls_id, id); |
| 86 | if (spec == nullptr || !spec->IsEverAvailable()) return {}; |
| 87 | return spec->badges; |
| 88 | } |
| 89 | |
| 90 | bool IsTypeAvailable(int cls_id, int id) const override |
| 91 | { |
nothing calls this directly
no test coverage detected