Dashboard/Quik/PAL/IFontFactory.cs

12 lines
227 B
C#
Raw Normal View History

2024-05-27 20:49:25 +02:00
using System.Diagnostics.CodeAnalysis;
using System.IO;
2024-07-17 22:18:20 +02:00
using Dashboard.Media;
2024-05-27 20:49:25 +02:00
2024-07-17 22:18:20 +02:00
namespace Dashboard.PAL
2024-05-27 20:49:25 +02:00
{
public interface IFontFactory
{
bool TryOpen(Stream stream, [NotNullWhen(true)] out QFont font);
}
}