mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-14 19:28:57 +01:00
19 lines
227 B
C++
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
|
|
|