2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-05 20:43:03 +00:00

chore: add ModMan args

This commit is contained in:
Jan Laupetin
2025-10-11 14:15:04 +01:00
parent 4911cfa4c6
commit 2037cf3258
3 changed files with 138 additions and 1 deletions

19
src/ModMan/ModManArgs.h Normal file
View File

@@ -0,0 +1,19 @@
#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;
};