Files
aibis-dream/Assets/Scripts/Typography/ITypographyProfileLoader.cs
T

11 lines
213 B
C#

using System.Threading.Tasks;
namespace AibisDream.Framework
{
public interface ITypographyProfileLoader
{
Task<TypographyProfile> LoadAsync(string key);
void Release(string key);
}
}