Files
Aerofoil/PortabilityLayer/FontRenderer.h
2020-09-12 14:01:51 -04:00

19 lines
278 B
C++

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