aboutsummaryrefslogtreecommitdiff
path: root/src/helper.h
blob: f3ce275285f565c6bccac9430ca7cdb6b7a8ed46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef HELPER_H
#define HELPER_H

#include <rapidjson/document.h>

#include "ns_plugin.h"

void SquirrelToJSON(
    rapidjson::Value* out_val,
    rapidjson::MemoryPoolAllocator<>& allocator,
    SQObject* obj_ptr
);

#endif