VideoCommon: watch texture pack folder for texture reloads (from dynamic input textures)

This commit is contained in:
iwubcode
2024-07-04 17:39:21 -05:00
parent 7afa9e6c6f
commit d940d62cae
6 changed files with 64 additions and 6 deletions

View File

@ -0,0 +1,14 @@
// Copyright 2024 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "Common/FilesystemWatcher.h"
#include "VideoCommon/Assets/CustomAssetLibrary.h"
namespace VideoCommon
{
class WatchableFilesystemAssetLibrary : public CustomAssetLibrary, public Common::FilesystemWatcher
{
};
} // namespace VideoCommon