#pragma once #include #include namespace devilution { /** * @brief Formats integer with thousands separator. */ std::string FormatInteger(int n); std::string FormatInteger(uint32_t n); } // namespace devilution