chore: improve args code for other tools

This commit is contained in:
Jan
2024-09-23 20:00:00 +02:00
parent c37e9984ba
commit da18291c89
4 changed files with 104 additions and 76 deletions

View File

@ -7,6 +7,7 @@
#include "Utils/FileUtils.h"
#include "Utils/StringUtils.h"
#include <format>
#include <iostream>
#include <regex>
#include <type_traits>
@ -167,7 +168,7 @@ void UnlinkerArgs::PrintUsage()
void UnlinkerArgs::PrintVersion()
{
std::cout << "OpenAssetTools Unlinker " << std::string(GIT_VERSION) << "\n";
std::cout << std::format("OpenAssetTools Unlinker {}\n", GIT_VERSION);
}
void UnlinkerArgs::SetVerbose(const bool isVerbose)