blob: 196d311397c9a6a9b4ad257abf1d899f2c2836c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|