zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Model/Helper/ResourcesHelper.cs

25 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
#if UNITY
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
namespace ET
{
public static class ResourcesHelper
{
public static UnityEngine.Object Load(string path)
{
return Resources.Load(path);
}
}
}
#endif