BattleResource.cs 731 B

1234567891011121314151617181920212223242526272829303132333435
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. namespace YLBattle
  5. {
  6. /// <summary>
  7. /// 场景资源
  8. /// </summary>
  9. public class BattleResources
  10. {
  11. /// <summary>
  12. /// 地图背景
  13. /// </summary>
  14. public static string SenceBg = string.Empty;
  15. /// <summary>
  16. /// 地图
  17. /// </summary>
  18. public static string SenceMap = string.Empty;
  19. /// <summary>
  20. /// 龙骨资源
  21. /// </summary>
  22. public static List<string> Dragons = new List<string>();
  23. /// <summary>
  24. /// 技能特效
  25. /// </summary>
  26. public static List<string> SkillEffects = new List<string>();
  27. }
  28. }