Files
OpenBK7231T_App/src/sim/Text.cpp
2022-11-23 22:08:12 +01:00

19 lines
227 B
C++

#ifdef WINDOWS
#include "Text.h"
void CText::drawShape() {
drawText(getX(), getY(), txt.c_str());
}
void CText::rotateDegreesAround_internal(float f, const Coord &p) {
//pos = pos.rotateDegreesAround(f, p);
}
#endif