mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-02 11:59:49 -06:00
15 lines
228 B
C++
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
|