Files
Aerofoil/PortabilityLayer/QDState.h
2020-05-21 03:30:11 -04:00

20 lines
244 B
C++

#pragma once
#include "RGBAColor.h"
#include "SharedTypes.h"
namespace PortabilityLayer
{
class FontFamily;
struct QDState
{
QDState();
FontFamily *m_fontFamily;
int m_fontVariationFlags;
int m_fontSize;
Rect m_clipRect;
};
}