2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-17 16:07:48 +00:00
Files
OpenAssetTools/src/ModMan/ModManArgs.h
2025-10-11 19:04:47 +01:00

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;
};