diff options
Diffstat (limited to 'NorthstarDLL/scripts/scriptjson.h')
-rw-r--r-- | NorthstarDLL/scripts/scriptjson.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/NorthstarDLL/scripts/scriptjson.h b/NorthstarDLL/scripts/scriptjson.h new file mode 100644 index 00000000..09926bef --- /dev/null +++ b/NorthstarDLL/scripts/scriptjson.h @@ -0,0 +1,14 @@ +#pragma once + +#include "pch.h" +#include "rapidjson/document.h" +#include "rapidjson/writer.h" +#include "rapidjson/stringbuffer.h" + +template <ScriptContext context> void EncodeJSONTable( + SQTable* table, + rapidjson::GenericValue<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<SourceAllocator>>* obj, + rapidjson::MemoryPoolAllocator<SourceAllocator>& allocator); + +template <ScriptContext context> void +DecodeJsonTable(HSquirrelVM* sqvm, rapidjson::GenericValue<rapidjson::UTF8<char>, rapidjson::MemoryPoolAllocator<SourceAllocator>>* obj); |