yyl
9 天以前 871594462e82d6bc1341918d39e11ab036d59563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.Collections.Generic;
using System.Collections.Specialized;
 
public partial class MainChapterConfig : ConfigBase<int, MainChapterConfig>
{
    public static OrderedDictionary unLockedChapterDict = new OrderedDictionary();
 
    protected override void OnConfigParseCompleted()
    {
        if (DailyBootyUpperList != null)
        { 
            for (int i = 0; i < DailyBootyUpperList.Length; i++)
            {
                if (DailyBootyUpperList[i].Length == 0)
                    return;
                int itemID = DailyBootyUpperList[i][0];
                if (!unLockedChapterDict.Contains(itemID))
                {
                    unLockedChapterDict.Add(itemID, ChapterID);
                }
            }
        }
    }
 
   
}