pctl.h 366 B

12345678910111213141516
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/pctl/module.h"
  6. namespace Service::PCTL {
  7. class PCTL final : public Module::Interface {
  8. public:
  9. explicit PCTL(std::shared_ptr<Module> module, const char* name);
  10. };
  11. } // namespace Service::PCTL