Add jsonPrint function

This commit is contained in:
Federico Cecchetto
2021-06-20 00:36:07 +02:00
parent 9ead1676b0
commit dbc0a928b9
3 changed files with 27 additions and 0 deletions

6
src/component/json.hpp Normal file
View File

@ -0,0 +1,6 @@
#pragma once
namespace json
{
std::string gsc_to_string(const scripting::script_value& _value);
}