Files
QuestPDF/QuestPDF/Drawing/SpacePlan/FullRender.cs
T
2021-01-16 01:31:39 +01:00

19 lines
439 B
C#

using QuestPDF.Infrastructure;
namespace QuestPDF.Drawing.SpacePlan
{
internal class FullRender : Size, ISpacePlan
{
public FullRender(Size size) : this(size.Width, size.Height)
{
}
public FullRender(float width, float height) : base(width, height)
{
}
public override string ToString() => $"FullRender {base.ToString()}";
}
}