IObjectConf.cs 462 B

123456789101112131415161718192021222324
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class IObjectConf
  5. {
  6. /// <summary>
  7. /// obj的主键,索引
  8. /// </summary>
  9. private string objKey;
  10. /// <summary>
  11. /// 是否已下载
  12. /// </summary>
  13. private bool isDownLoad;
  14. /// <summary>
  15. /// icon的路径
  16. /// </summary>
  17. private string iconPath;
  18. /// <summary>
  19. /// 名称
  20. /// </summary>
  21. private string name;
  22. }