mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 19:13:52 +00:00
20 lines
598 B
C++
20 lines
598 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the item-export handlers — render items.json as
|
||
|
|
// human-readable Markdown / CSV reports for design docs and
|
||
|
|
// pivot-table workflows.
|
||
|
|
// --export-zone-items-md per-zone Markdown by quality
|
||
|
|
// --export-project-items-md project-wide Markdown rollup
|
||
|
|
// --export-project-items-csv project-wide CSV (zone in col 1)
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleItemsExport(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|