Dashboard/Quik/PAL/IFontFactory.cs

12 lines
217 B
C#
Raw Normal View History

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