Files
Aerofoil/PortabilityLayer/FontRenderer.h
2020-01-18 18:20:16 -05:00

18 lines
279 B
C++

#pragma once
#include "FontHacks.h"
namespace PortabilityLayer
{
class RenderedFont;
class HostFont;
class FontRenderer
{
public:
virtual RenderedFont *RenderFont(HostFont *font, int size, bool aa, FontHacks fontHacks) = 0;
static FontRenderer *GetInstance();
};
}