mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-09 18:43:51 +00:00
19 lines
471 B
C++
19 lines
471 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the proprietary-format inspection handlers — each
|
||
|
|
// reads a Blizzard-format file and prints its structure:
|
||
|
|
// --info-png --info-blp
|
||
|
|
// --info-m2 --info-wmo
|
||
|
|
// --info-adt --info-jsondbc
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleFormatInfo(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|