mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 12:43:32 +01:00
17 lines
251 B
C++
17 lines
251 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class GameListItem;
|
|
|
|
namespace BootManager
|
|
{
|
|
bool BootCore(const std::string& _rFilename);
|
|
|
|
void Stop();
|
|
}
|