Add all missing docs

This commit is contained in:
2025-05-03 14:18:12 +02:00
parent 4d5dfd0342
commit 441f5dddaf
40 changed files with 400 additions and 21 deletions

View File

@@ -28,6 +28,9 @@ public interface IReadOnlyTypeLibrary
/// </summary>
float GetEffectiveness(TypeIdentifier attacking, IEnumerable<TypeIdentifier> defending);
/// <summary>
/// Gets the effectiveness for a single attacking type against all defending types.
/// </summary>
IEnumerable<(TypeIdentifier type, float effectiveness)> GetAllEffectivenessFromAttacking(TypeIdentifier attacking);
}