mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-07-11 19:40:07 +00:00
15 lines
267 B
C++
15 lines
267 B
C++
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Nvnflinger {
|
|
|
|
void LoopProcess(Core::System& system);
|
|
|
|
} // namespace Service::Nvnflinger
|