Resources 에서 불러오기를 당담하는 매니저 public class ResourceManager : PersistentSingleton{ //불러온 리소스를 저장 private Dictionary resourcePool = new Dictionary(); public T LoadResource(string name, EMajorType majorType, ESubType subType = ESubType.None) { StringBuilder stringBuilder = new StringBuilder(); T returnAsset; stringBuilder.Append(majorType); stringBuilder.Append..