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

22 lines
477 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/pctl/pctl_module.h"
2020-12-28 15:15:37 +00:00
namespace Core {
class System;
}
namespace Service::PCTL {
class PCTL final : public Module::Interface {
public:
2021-04-05 01:30:07 +02:00
explicit PCTL(Core::System& system_, std::shared_ptr<Module> module_, const char* name,
2021-05-16 11:38:19 +02:00
Capability capability_);
2020-12-28 15:15:37 +00:00
~PCTL() override;
};
} // namespace Service::PCTL