mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Move WiiUtils to Core
Allows reusing the WAD import logic more easily, whereas UICommon code can only be used from UICommon and UI. And managing what's on the NAND is the Core's responsability, not UI.
This commit is contained in:
parent
6a0d064f6e
commit
0c7b9570b4
9 changed files with 11 additions and 8 deletions
14
Source/Core/Core/WiiUtils.h
Normal file
14
Source/Core/Core/WiiUtils.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
// Small utility functions for common Wii related tasks.
|
||||
|
||||
namespace WiiUtils
|
||||
{
|
||||
bool InstallWAD(const std::string& wad_path);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue