mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 11:03:51 +00:00
19 lines
561 B
C++
19 lines
561 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the four per-zone inventory handlers:
|
||
|
|
// --list-zone-meshes (WOMs with vert/tri/bone/anim/batch counts)
|
||
|
|
// --list-zone-audio (WAVs with sample-rate/duration)
|
||
|
|
// --list-zone-textures (texture refs across every WOM)
|
||
|
|
// --info-zone-summary (one-glance BOOTSTRAPPED/PARTIAL/EMPTY)
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleZoneInventory(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|