2026-03-26 21:02:10 +01:00
|
|
|
#include <pd/ultra/elems/text.hpp>
|
|
|
|
|
|
|
|
|
|
namespace PD {
|
|
|
|
|
namespace Ultra {
|
|
|
|
|
PD_API void Text::Draw(PD::Li::Drawlist& l) {
|
2026-03-28 13:52:36 +01:00
|
|
|
l.DrawText(pRenderspace.TopLeft(), pText.c_str(), pColor);
|
2026-03-26 21:02:10 +01:00
|
|
|
}
|
|
|
|
|
} // namespace Ultra
|
|
|
|
|
} // namespace PD
|