mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
12 lines
275 B
C#
12 lines
275 B
C#
namespace UglyToad.PdfPig.Content
|
|
{
|
|
using Fonts;
|
|
using Tokenization.Tokens;
|
|
|
|
internal interface IResourceStore
|
|
{
|
|
void LoadResourceDictionary(DictionaryToken resourceDictionary, bool isLenientParsing);
|
|
|
|
IFont GetFont(NameToken name);
|
|
}
|
|
} |