mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 02:53:51 +00:00
22 lines
627 B
C++
22 lines
627 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the mesh-aggregate info handlers — surface
|
||
|
|
// vertex/triangle/bone/animation totals across WOM/WOB
|
||
|
|
// files, plus per-mesh detail views.
|
||
|
|
// --info-zone-models-total aggregate WOM/WOB across a zone
|
||
|
|
// --list-zone-meshes-detail per-mesh table sorted by tris
|
||
|
|
// --info-mesh single-WOM detail dump
|
||
|
|
//
|
||
|
|
// All three support --json output.
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleMeshInfo(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|