Files
Aerofoil/PortabilityLayer/QDState.h

20 lines
244 B
C
Raw Normal View History

#pragma once
#include "RGBAColor.h"
2019-12-21 18:40:17 -05:00
#include "SharedTypes.h"
2019-12-21 18:40:17 -05:00
namespace PortabilityLayer
{
2019-12-30 20:53:11 -05:00
class FontFamily;
2019-12-21 18:40:17 -05:00
struct QDState
{
QDState();
2019-12-30 20:53:11 -05:00
FontFamily *m_fontFamily;
int m_fontVariationFlags;
int m_fontSize;
Rect m_clipRect;
2019-12-21 18:40:17 -05:00
};
}