mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 02:53:51 +00:00
20 lines
612 B
C++
20 lines
612 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the --info-tilemap project-wide tile-grid handler.
|
||
|
|
// Renders the WoW 64x64 ADT grid showing which tiles are
|
||
|
|
// claimed by which zones, with collision detection (multiple
|
||
|
|
// zones claiming the same tile). Useful for spotting tile-
|
||
|
|
// coord overlaps before two zones try to ship conflicting
|
||
|
|
// content. Supports --json for machine-readable reports.
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleTilemap(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|