Files
Aerofoil/PortabilityLayer/FontRenderer.h
2019-12-23 17:43:10 -05:00

18 lines
270 B
C++

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