2021-12-03 15:40:19 -06:00
|
|
|
// Copyright 2021 Dolphin Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-03-12 09:48:12 +01:00
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
2021-12-03 15:40:19 -06:00
|
|
|
|
|
|
|
|
namespace DolphinTool
|
|
|
|
|
{
|
2023-06-14 18:33:11 -05:00
|
|
|
int ConvertCommand(const std::vector<std::string>& args);
|
2021-12-03 15:40:19 -06:00
|
|
|
} // namespace DolphinTool
|