GuideSimulationDataManager.cs 369 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using ET;
  4. using FairyGUI;
  5. namespace GFGGame
  6. {
  7. //用于引导的模拟数据
  8. public class GuideSimulationDataManager : SingletonBase<GuideSimulationDataManager>
  9. {
  10. //引导背景特权
  11. //1:从商店进入
  12. //2:从设置进入
  13. public int GuideMonthlyJumpType = 0;
  14. }
  15. }