pm_module.h 364 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "core/hle/service/service.h"
  5. namespace Service::PSC {
  6. class IPmModule final : public ServiceFramework<IPmModule> {
  7. public:
  8. explicit IPmModule(Core::System& system_);
  9. ~IPmModule() override;
  10. };
  11. } // namespace Service::PSC