Ejemplo n.º 1
0
        private static List <List <Person> > Shuffle(List <List <Person> > tables)
        {
            foreach (var table in tables)
            {
                if (CRandom.Chance(0.5f))
                {
                    table.Reverse();
                }
            }

            if (Settings.Debug)
            {
                Debug.Log(GetFormation(tables));
            }

            return(tables.Shuffle());
        }