mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-09 18:43:51 +00:00
20 lines
530 B
C++
20 lines
530 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace wowee {
|
||
|
|
namespace editor {
|
||
|
|
namespace cli {
|
||
|
|
|
||
|
|
// Dispatch the WOM mesh editing/transform commands:
|
||
|
|
// --add-texture-to-mesh --scale-mesh
|
||
|
|
// --translate-mesh --strip-mesh
|
||
|
|
// --rotate-mesh --center-mesh
|
||
|
|
// --flip-mesh-normals --mirror-mesh
|
||
|
|
// --smooth-mesh-normals --merge-meshes
|
||
|
|
//
|
||
|
|
// Returns true if matched; outRc holds the exit code.
|
||
|
|
bool handleMeshEdit(int& i, int argc, char** argv, int& outRc);
|
||
|
|
|
||
|
|
} // namespace cli
|
||
|
|
} // namespace editor
|
||
|
|
} // namespace wowee
|