summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/psc/pm_module.h
blob: b3a2d25842f3c6e0bc33849d5f0d557a752074c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Service::PSC {

class IPmModule final : public ServiceFramework<IPmModule> {
public:
    explicit IPmModule(Core::System& system_);
    ~IPmModule() override;
};

} // namespace Service::PSC