mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2026-02-04 22:22:22 +08:00
12 lines
151 B
C#
12 lines
151 B
C#
using UnityEngine;
|
|
|
|
namespace AssetsLoader
|
|
{
|
|
public interface ILoad
|
|
{
|
|
GameObject LoadPrefab(string path);
|
|
|
|
string LoadText(string path);
|
|
}
|
|
}
|