This commit is contained in:
Scove
2026-03-30 12:15:19 +07:00
parent 1fb9c78adb
commit 4174d5122a
104 changed files with 247 additions and 1869 deletions

View File

@@ -0,0 +1,21 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class Extensions
{
private static System.Random rng = new System.Random();
public static void Shuffle<T>(this IList<T> list)
{
int n = list.Count;
while (n > 1)
{
n--;
int k = rng.Next(n + 1);
T value = list[k];
list[k] = list[n];
list[n] = value;
}
}
}