12 lines
227 B
C#
12 lines
227 B
C#
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.IO;
|
|
using Dashboard.Media;
|
|
|
|
namespace Dashboard.PAL
|
|
{
|
|
public interface IFontFactory
|
|
{
|
|
bool TryOpen(Stream stream, [NotNullWhen(true)] out QFont font);
|
|
}
|
|
} |