mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 02:53:51 +00:00
23 lines
717 B
C++
23 lines
717 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the water-layer audit handlers — aggregate liquid
|
||
|
|
// data (water/ocean/magma/slime) across a zone or project.
|
||
|
|
// Useful for confirming a 'lake zone' actually carries water,
|
||
|
|
// or for budget planning when many zones share liquid types.
|
||
|
|
// --info-zone-water drill into one zone's MH2O layers
|
||
|
|
// --info-project-water project-wide rollup with per-zone rows
|
||
|
|
//
|
||
|
|
// Both support an optional trailing `--json` flag for
|
||
|
|
// machine-readable reports.
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleInfoWater(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|