Beispiel #1
0
        // Token: 0x06005115 RID: 20757 RVA: 0x00182A4C File Offset: 0x00180C4C
        public static ProRiftChapter RiftChapterToPBRiftChapter(RiftChapter riftChapter)
        {
            ProRiftChapter proRiftChapter = new ProRiftChapter();

            foreach (RiftLevel riftLevel in riftChapter.ChapterLevels)
            {
                proRiftChapter.ChapterLevels.Add(RiftLevel.RiftLevelToPBRiftLevel(riftLevel));
            }
            foreach (int item in riftChapter.StarRewardIndexes)
            {
                proRiftChapter.StarRewardIndexes.Add(item);
            }
            return(proRiftChapter);
        }