summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/develop_interface.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 20:08:49 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:35:37 +0100
commitcf0de18982da2b83772d64940064b17946dabd21 (patch)
tree7b4d6324bac442205013de85497898a66cd09cad /src/core/hle/service/ns/develop_interface.h
parentns: rewrite ISystemUpdateInterface (diff)
downloadyuzu-cf0de18982da2b83772d64940064b17946dabd21.tar
yuzu-cf0de18982da2b83772d64940064b17946dabd21.tar.gz
yuzu-cf0de18982da2b83772d64940064b17946dabd21.tar.bz2
yuzu-cf0de18982da2b83772d64940064b17946dabd21.tar.lz
yuzu-cf0de18982da2b83772d64940064b17946dabd21.tar.xz
yuzu-cf0de18982da2b83772d64940064b17946dabd21.tar.zst
yuzu-cf0de18982da2b83772d64940064b17946dabd21.zip
Diffstat (limited to 'src/core/hle/service/ns/develop_interface.h')
-rw-r--r--src/core/hle/service/ns/develop_interface.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/develop_interface.h b/src/core/hle/service/ns/develop_interface.h
new file mode 100644
index 000000000..a9f81ccd6
--- /dev/null
+++ b/src/core/hle/service/ns/develop_interface.h
@@ -0,0 +1,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::NS {
+
+class IDevelopInterface final : public ServiceFramework<IDevelopInterface> {
+public:
+ explicit IDevelopInterface(Core::System& system_);
+ ~IDevelopInterface() override;
+};
+
+} // namespace Service::NS