void UpdateRetrievedCaches(bool testing = false) { int switch_ = new System.Random().Next() % 3; retrievedCaches.Clear(); if (switch_ == 0) { KeoCacheCollection coll = new KeoCacheCollection(); KeoCacheCollectionData cd = new KeoCacheCollectionData(); cd.name = "Hard boi 1"; cd.title = "Hello There"; cd.author = "Benjamin Kerman"; cd.description = "This is a tester boi"; cd.difficulty = Difficulty.Insane; coll.keocacheCollectionData = cd; retrievedCaches.Add(new Tuple <KeoCacheCollection, bool>(coll, false)); } else if (switch_ == 1) { KeoCacheCollection coll = new KeoCacheCollection(); KeoCacheCollectionData cd = new KeoCacheCollectionData(); cd.name = "Hard boi 2"; cd.title = "What the..."; cd.author = "Linuxboi"; cd.description = "woweee this is cool"; cd.difficulty = Difficulty.Normal; coll.keocacheCollectionData = cd; retrievedCaches.Add(new Tuple <KeoCacheCollection, bool>(coll, false)); } else { KeoCacheCollection coll = new KeoCacheCollection(); KeoCacheCollectionData cd = new KeoCacheCollectionData(); cd.name = "Easy man"; cd.title = "dun dun DUN!"; cd.author = "Kataochi"; cd.description = "boi oh boy oh boph"; cd.difficulty = Difficulty.Easy; coll.keocacheCollectionData = cd; retrievedCaches.Add(new Tuple <KeoCacheCollection, bool>(coll, false)); } }
internal KeoCacheCollection() { keocacheCollectionData = new KeoCacheCollectionData(); keoCacheDataList = new List <KeoCacheData>(); }