Example #1
0
    public void UpdateTempleList(string name)
    {
        string temple = GameUtilities.GetTempleFromTrainer(name);

        if (temple.Length > 0)
        {
            List <string> tmp = new List <string>(temples);
            tmp.Add(temple);
            temples = tmp.ToArray();
        }
    }