This reverts commit 7a477817fe, reversing
changes made to 7c127ac68e.
This commit is contained in:
jankaminski1
2024-04-07 15:57:24 +02:00
parent 7a477817fe
commit a27478b727
33 changed files with 442 additions and 2659 deletions

View File

@ -7,9 +7,6 @@ namespace Utility
{
public static T GetRandomElement<T>(this IReadOnlyList<T> list)
{
if (list.Count == 0)
return default;
return list[Random.Range(0, list.Count)];
}
}