Files
UnrealEngine/Engine/Source/ThirdParty/CLI11/git-main/book/code/simplest.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
163 B
C++

#include "CLI/CLI.hpp"
int main(int argc, char **argv) {
CLI::App app;
// Add new options/flags here
CLI11_PARSE(app, argc, argv);
return 0;
}