StudioData.cs 546 B

12345678910111213141516171819202122
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class StudioData
  5. {
  6. /// <summary>
  7. /// 副本Id
  8. /// </summary>
  9. public int ChapterId;
  10. /// <summary>
  11. /// 查阅建档一章总分
  12. /// </summary>
  13. public int ChapterScore;
  14. /// <summary>
  15. /// 宝箱奖励状态,索引按照配置列表顺序索引,值由ConstBonusStatus定义(只有查阅建档才有值)
  16. /// </summary>
  17. public List<int> RewardsStatus = new List<int>();
  18. }
  19. }