mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 02:53:51 +00:00
21 lines
666 B
C++
21 lines
666 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the project-level action handlers — top-level
|
||
|
|
// project utilities that don't fit any of the more specific
|
||
|
|
// modules. Each operates on a project directory rather than
|
||
|
|
// a single zone.
|
||
|
|
// --copy-project recursive copy of an entire project tree
|
||
|
|
// --zone-summary one-shot validate + content rollup for a zone
|
||
|
|
// --bench-bake-project per-zone WHM/WOT load timing benchmark
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleProjectActions(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|