Net.Like.Xue.Tokyo/Assets/Arts/Rukha93/ModularAnimeCharacter/Samples/Customization/Scripts/AssetLoading/IAssetLoader.cs

12 lines
339 B
C#
Raw Normal View History

2025-02-24 23:03:39 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Rukha93.ModularAnimeCharacter.Customization
{
public interface IAssetLoader
{
IEnumerator LoadAssetList(string path, System.Action<string[]> onLoaded);
IEnumerator LoadAsset<T>(string path, System.Action<T> onLoaded);
}
}