| 75 | } |
| 76 | |
| 77 | void UpdateAllTextEffectVirtCoords() |
| 78 | { |
| 79 | for (auto &te : _text_effects) { |
| 80 | if (!te.IsValid()) continue; |
| 81 | |
| 82 | te.UpdatePosition(te.center, te.top, te.msg.GetDecodedString()); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | void RemoveTextEffect(TextEffectID te_id) |
| 87 | { |
no test coverage detected