ngc: implement service

This commit is contained in:
Liam
2023-09-13 22:06:33 -04:00
parent 8fb9f78e83
commit 9d7eebde7b
7 changed files with 158 additions and 70 deletions

View File

@ -0,0 +1,14 @@
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Core {
class System;
}
namespace Service::NGC {
void LoopProcess(Core::System& system);
} // namespace Service::NGC