| 178 | } |
| 179 | |
| 180 | inline std::string Gui::floatToString(float value, int precision) { |
| 181 | std::stringstream ss; |
| 182 | ss << std::fixed << std::setprecision(precision) << value; |
| 183 | return ss.str(); |
| 184 | } |
| 185 | |
| 186 | inline bool Gui::getIsDisplayed() const { |
| 187 | return mIsDisplayed; |
nothing calls this directly
no outgoing calls
no test coverage detected