Files
DSP_Mods_TO/XianTu/AssetsLoader/ILoad.cs
T
2026-01-28 20:27:15 +08:00

12 lines
172 B
C#

using UnityEngine;
namespace AssetsLoader
{
public interface ILoad
{
GameObject LoadPrefab(string path);
string LoadText(string path);
}
}