2021-02-15 05:14:02 +00:00
|
|
|
// Copyright 2021 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2021-02-15 05:14:02 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <picojson.h>
|
|
|
|
|
|
|
|
#include "InputCommon/DynamicInputTextures/DITData.h"
|
|
|
|
|
|
|
|
namespace InputCommon::DynamicInputTextures
|
|
|
|
{
|
|
|
|
bool ProcessSpecificationV1(picojson::value& root, std::vector<Data>& input_textures,
|
|
|
|
const std::string& base_path, const std::string& json_file);
|
|
|
|
}
|