mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-16 00:01:56 -08:00
19 lines
340 B
C++
19 lines
340 B
C++
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Nvnflinger {
|
|
class Nvnflinger;
|
|
}
|
|
|
|
namespace Service::AM {
|
|
|
|
void LoopProcess(Nvnflinger::Nvnflinger& nvnflinger, Core::System& system);
|
|
|
|
} // namespace Service::AM
|