IConfigManager.cs 710 B

123456789101112131415161718192021222324252627282930313233
  1. /***
  2. *
  3. * Title: "SUIFW"UI框架项目
  4. * 主题: 配置管理器接口
  5. * Description:
  6. * 功能: 对于XML(核心数据)配置文件的读取处理。
  7. * Date: 2017
  8. * Version: 0.1版本
  9. * Modify Recoder:
  10. *
  11. *
  12. */
  13. using UnityEngine;
  14. using UnityEngine.UI;
  15. using System;
  16. using System.Collections.Generic;
  17. namespace SUIFW
  18. {
  19. public interface IConfigManager
  20. {
  21. /// <summary>
  22. /// 属性: 应用设置
  23. /// </summary>
  24. Dictionary<string, string> AppSetting { get; }
  25. /// <summary>
  26. /// 得到AppSetting的最大数量
  27. /// </summary>
  28. int GetAppSettingMaxNumber();
  29. }//Class_end
  30. }