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:
19
src/ModMan/ModManArgs.h
Normal file
19
src/ModMan/ModManArgs.h
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user