Files
yuzu/src/core/hle/service/bcat/bcat.h

22 lines
494 B
C
Raw Normal View History

2022-04-23 20:49:07 +02:00
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 15:15:37 +00:00
#pragma once
2021-07-15 05:24:54 +02:00
#include "core/hle/service/bcat/bcat_module.h"
2020-12-28 15:15:37 +00:00
namespace Core {
class System;
}
namespace Service::BCAT {
class BCAT final : public Module::Interface {
public:
2021-05-05 10:10:21 +02:00
explicit BCAT(Core::System& system_, std::shared_ptr<Module> module_,
FileSystem::FileSystemController& fsc_, const char* name_);
2020-12-28 15:15:37 +00:00
~BCAT() override;
};
} // namespace Service::BCAT