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