using System.Collections; using System.Collections.Generic; using UnityEngine; public class LoadManager : MonoSingleton { public T Load(string path) where T:class { return Resources.Load(path) as T; } }