Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 167 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 167 Bytes

Shuffle Lists in C# in Unity

Shuffle takes a List<T> and randomly shuffles it in place

Sprite cardDeck = new List<Sprite>(52);
cardDeck.Shuffle();