set_sys.h 443 B

12345678910111213141516171819202122
  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/service.h"
  6. namespace Service {
  7. namespace Set {
  8. class SET_SYS final : public ServiceFramework<SET_SYS> {
  9. public:
  10. explicit SET_SYS();
  11. ~SET_SYS() = default;
  12. private:
  13. void GetColorSetId(Kernel::HLERequestContext& ctx);
  14. };
  15. } // namespace Set
  16. } // namespace Service