mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-01-04 05:35:25 +01:00
14 lines
253 B
C++
14 lines
253 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::OMM {
|
|
|
|
void LoopProcess(Core::System& system);
|
|
|
|
} // namespace Service::OMM
|