Files
dolphin/Source/Core/Core/IOS/MIOS.h
Lioncash 5e9763c0fa IOS/MIOS: Eliminate global system accessors
We can pass the system instance through the EmulationKernel instance.
2023-12-14 16:05:59 -05:00

15 lines
228 B
C++

// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Core
{
class System;
}
namespace IOS::HLE::MIOS
{
bool Load(Core::System& system);
} // namespace IOS::HLE::MIOS