Files
palladium/source/ultra/elems/text.cpp
tobid7 2e652a3c24 More stuff done at Project Ultra
- Added renderspace
- Revision System (to not always update pRenderspace
- added some test scene
2026-03-28 13:52:36 +01:00

9 lines
218 B
C++

#include <pd/ultra/elems/text.hpp>
namespace PD {
namespace Ultra {
PD_API void Text::Draw(PD::Li::Drawlist& l) {
l.DrawText(pRenderspace.TopLeft(), pText.c_str(), pColor);
}
} // namespace Ultra
} // namespace PD