Fixes all warnings
All checks were successful
Build / Build (push) Successful in 49s

This commit is contained in:
2025-05-19 11:50:51 +02:00
parent 015e5819f3
commit eea5697109
125 changed files with 11 additions and 186 deletions

View File

@@ -47,6 +47,9 @@ public interface IRandom
/// </summary>
public bool GetBool();
/// <summary>
/// Get a random element from the given list.
/// </summary>
public T OneOf<T>(IReadOnlyList<T> list);
}