13 lines
243 B
C
13 lines
243 B
C
|
// 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
|