diff --git a/src/StringConversion.h b/src/StringConversion.h index 4880cf9..06ce891 100644 --- a/src/StringConversion.h +++ b/src/StringConversion.h @@ -1,6 +1,8 @@ #pragma once #include +/* Easy way of converting an int to a string without writing 5 lines of code every time you want to do it. */ std::string int_to_string(const int& value); +/* Easy way of converting a float to a string without writing 5 lines of code every time you want to do it. */ std::string float_to_string(const float& value); \ No newline at end of file