aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/scripts/scriptjson.h
blob: ed53236dbcc5b7c62d9557ce306d2123b03b9945 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#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);