mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-07-07 21:19:03 +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
|