mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-30 17:46:48 +01:00
19 lines
385 B
C
19 lines
385 B
C
|
// Copyright 2023 Dolphin Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include <picojson.h>
|
||
|
|
||
|
#include "VideoCommon/Assets/DirectFilesystemAssetLibrary.h"
|
||
|
|
||
|
struct GraphicsModAssetConfig
|
||
|
{
|
||
|
std::string m_name;
|
||
|
VideoCommon::DirectFilesystemAssetLibrary::AssetMap m_map;
|
||
|
|
||
|
bool DeserializeFromConfig(const picojson::object& obj);
|
||
|
};
|