From af4302373254c0f8f4a3a29022bd4a2a08ccaad6 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 8 Jun 2022 19:46:14 +0200 Subject: [PATCH] DocumentationProject: StringConversion was easy --- src/StringConversion.h | 2 ++ 1 file changed, 2 insertions(+) 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