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

@@ -19,6 +19,9 @@ public interface IAbility : INamedValue
/// </summary>
IReadOnlyDictionary<StringKey, object?> Parameters { get; }
/// <summary>
/// Checks whether the ability has a specific flag.
/// </summary>
bool HasFlag(StringKey key);
}
@@ -44,6 +47,9 @@ public class AbilityImpl : IAbility
/// <inheritdoc />
public IReadOnlyDictionary<StringKey, object?> Parameters { get; }
/// <summary>
/// A collection of arbitrary flags that can be used to mark the ability with specific properties.
/// </summary>
public ImmutableHashSet<StringKey> Flags;
/// <inheritdoc />