This repository has been archived on 2026-05-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
yuzu/src/core/hle/service/pm/pm.h
T
2024-02-27 18:26:31 +01:00

15 lines
251 B
C++

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Core {
class System;
}
namespace Service::PM {
void LoopProcess(Core::System& system);
} // namespace Service::PM