| 171 | } |
| 172 | |
| 173 | List<DamageNotification> DamageManager::pullPendingNotifications() { |
| 174 | return take(m_pendingNotifications); |
| 175 | } |
| 176 | |
| 177 | SmallList<pair<EntityId, HitType>, 4> DamageManager::queryHit(DamageSource const& source, EntityId causingId) const { |
| 178 | SmallList<pair<EntityId, HitType>, 4> resultList; |
no test coverage detected