Files
QuestPDF/QuestPDF/Drawing/SpacePlan/TextRender.cs
T
Marcin Ziąbek a124d23862 Code cleanup
2021-09-13 20:29:50 +02:00

13 lines
300 B
C#

namespace QuestPDF.Drawing.SpacePlan
{
internal class TextRender : FullRender
{
public float Ascent { get; set; }
public float Descent { get; set; }
public TextRender(float width, float height) : base(width, height)
{
}
}
}