2022-11-05 16:58:44 +04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2024-02-18 05:45:33 +04:00
|
|
|
namespace Service::NS {
|
2022-11-05 16:58:44 +04:00
|
|
|
|
2023-02-19 08:22:05 +04:00
|
|
|
void LoopProcess(Core::System& system);
|
2022-11-05 16:58:44 +04:00
|
|
|
|
2024-02-18 05:45:33 +04:00
|
|
|
} // namespace Service::NS
|