Files
palladium/source/ultra/elems/text.cpp
T

9 lines
200 B
C++
Raw Normal View History

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) {
l.DrawText(pPos, pText.c_str(), pColor);
}
} // namespace Ultra
} // namespace PD