mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-04-19 20:22:53 +00:00
15 lines
251 B
C++
15 lines
251 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::AM {
|
|
|
|
void LoopProcess(Core::System& system);
|
|
|
|
} // namespace Service::AM
|