- Added container - Made container the base of Layout - Set Containers theirself as pParent for Elements on Push
9 lines
200 B
C++
9 lines
200 B
C++
#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
|