yuzu/src/core/hle/service/ngc/ngc.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
253 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-08-27 00:16:09 +00:00
#pragma once
namespace Core {
class System;
}
2023-09-14 02:06:33 +00:00
namespace Service::NGC {
2021-08-27 00:16:09 +00:00
void LoopProcess(Core::System& system);
2021-08-27 00:16:09 +00:00
2023-09-14 02:06:33 +00:00
} // namespace Service::NGC