init
This commit is contained in:
commit
f698a38c7e
585 changed files with 118338 additions and 0 deletions
6
SimpleGame/src_original/Include/StringHelpers.inl
Normal file
6
SimpleGame/src_original/Include/StringHelpers.inl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
template <typename T> std::string toString(const T &value) {
|
||||
std::stringstream stream;
|
||||
stream << value;
|
||||
return stream.str();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue