mirror of
https://github.com/soarqin/DSP_Mods_TO.git
synced 2025-12-19 13:03:32 +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);
|
|
}
|
|
}
|