﻿#pragma once

#include <JSON/Array.hpp>
#include <JSON/Bool.hpp>
#include <JSON/Common.hpp>
#include <JSON/Null.hpp>
#include <JSON/Number.hpp>
#include <JSON/Object.hpp>
#include <JSON/String.hpp>

namespace RC::JSON
{
    /*
        JSON Help
        {} = an object
        [] = an array
        : = set value of key to something, eg "my_key": 3
        First item must an anonymous object
    */
}
