mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-10 11:03:51 +00:00
19 lines
572 B
C++
19 lines
572 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the items.json mutation handlers — edit / duplicate /
|
||
|
|
// transfer item records in a zone's items.json.
|
||
|
|
// --set-item edit fields on an existing item by id or #idx
|
||
|
|
// --copy-zone-items copy items between zones (replace or merge)
|
||
|
|
// --clone-item duplicate an item with a fresh id
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleItemsMutate(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|