mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-22 14:00:46 -05: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
|