//////////////////////// \brief Set TextObject font \param font Font object ////////////////////////
| 50 | /// \param font Font object |
| 51 | ///////////////////////////// |
| 52 | inline void SetFont(Font* font){ |
| 53 | assert(font); |
| 54 | |
| 55 | this->font = font; |
| 56 | textDirty = true; |
| 57 | } |
| 58 | |
| 59 | ///////////////////////////// |
| 60 | /// \brief Set position of TextObject |
nothing calls this directly
no outgoing calls
no test coverage detected