summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Resources/ResourceManager.cs
blob: 193d8b33a4d4bb40fb3382bf432bfebcbe352fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ResourceManager : Singleton<ResourceManager>
{
	public T Load<T>(string path) where T : UnityEngine.Object
	{
		return Resources.Load<T>(path);
	}

}