develop_interface.h 394 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::NS {
  6. class IDevelopInterface final : public ServiceFramework<IDevelopInterface> {
  7. public:
  8. explicit IDevelopInterface(Core::System& system_);
  9. ~IDevelopInterface() override;
  10. };
  11. } // namespace Service::NS