mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 19:13:52 +00:00
18 lines
437 B
C++
18 lines
437 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Print the full --help / usage text to stdout. Drop-in
|
||
|
|
// replacement for the local-static printUsage main.cpp used to
|
||
|
|
// own; moved here so the 597-line block of printf calls doesn't
|
||
|
|
// keep main.cpp obese.
|
||
|
|
//
|
||
|
|
// argv0 is interpolated into the leading "Usage:" line.
|
||
|
|
void printUsage(const char* argv0);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|