12 lines
217 B
C#
12 lines
217 B
C#
|
|
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);
|
|
}
|
|
} |