blob: c69ffdf386c4873b7b89c5bff50f6a92e25f4568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2024 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <string>
#include <vector>
namespace DolphinTool
{
int Extract(const std::vector<std::string>& args);
} // namespace DolphinTool
|