mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-12-17 16:07:48 +00:00
20 lines
387 B
C++
20 lines
387 B
C++
#pragma once
|
|
|
|
#include "Utils/Arguments/ArgumentParser.h"
|
|
|
|
class ModManArgs
|
|
{
|
|
public:
|
|
ModManArgs();
|
|
bool ParseArgs(int argc, const char** argv, bool& shouldContinue);
|
|
|
|
private:
|
|
/**
|
|
* \brief Prints a command line usage help text for the ModMan tool to stdout.
|
|
*/
|
|
void PrintUsage() const;
|
|
static void PrintVersion();
|
|
|
|
ArgumentParser m_argument_parser;
|
|
};
|