using System.Collections; using System.Collections.Generic; using UnityEngine; public class ResourceManager : Singleton { public T Load(string path) where T : UnityEngine.Object { return Resources.Load(path); } }