mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-09 18:43:51 +00:00
22 lines
576 B
C++
22 lines
576 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the items.json read-only inspection handlers:
|
||
|
|
// --list-items --info-item
|
||
|
|
// --validate-items --validate-project-items
|
||
|
|
// --info-project-items
|
||
|
|
//
|
||
|
|
// Item editing commands (--add-item, --set-item, --remove-item)
|
||
|
|
// stay in main.cpp since they share state with quest reward
|
||
|
|
// editing logic.
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleItems(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|