ResourcesHelper.cs 322 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using UnityEngine;
  6. #if UNITY_EDITOR
  7. using UnityEditor;
  8. #endif
  9. namespace ETModel
  10. {
  11. public static class ResourcesHelper
  12. {
  13. public static UnityEngine.Object Load(string path)
  14. {
  15. return Resources.Load(path);
  16. }
  17. }
  18. }