| 261 | } |
| 262 | |
| 263 | TextObject::TextObject(vector2i_t pos, std::string& text, Font* font){ |
| 264 | this->pos = pos; |
| 265 | this->text = text; |
| 266 | this->font = font; |
| 267 | |
| 268 | CalculateSizes(); |
| 269 | } |
| 270 | |
| 271 | TextObject::TextObject(vector2i_t pos, const char* text, Font* font){ |
| 272 | this->pos = pos; |
nothing calls this directly
no outgoing calls
no test coverage detected