Dashboard/Quik/Media/MediaLoader.cs

22 lines
356 B
C#
Raw Normal View History

2023-06-29 13:17:32 +02:00
using System;
using System.IO;
namespace Quik.Media
{
public enum MediaHint
{
None,
Image,
Font
}
public interface MediaLoader
{
IDisposable GetMedia(object key, MediaHint hint);
}
public interface MediaLoader<T> : MediaLoader
{
IDisposable GetMedia(T key, MediaHint hint);
2023-06-29 13:17:32 +02:00
}
}