| 29 | } |
| 30 | |
| 31 | ~StatisticInfo() |
| 32 | { |
| 33 | if (mInfo != nullptr) |
| 34 | { |
| 35 | MyGUI::Gui::getInstance().destroyChildWidget(mInfo); |
| 36 | mInfo = nullptr; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | template<typename T> |
| 41 | void change(std::string_view _key, const T& _value) |
nothing calls this directly
no test coverage detected