AtomicCLI.cpp 405 B

123456789101112131415161718192021222324252627
  1. #include <Atomic/Core/ProcessUtils.h>
  2. using namespace Atomic;
  3. void Run(const Vector<String>& arguments)
  4. {
  5. if (arguments.Size() < 2)
  6. {
  7. }
  8. }
  9. int main(int argc, char** argv)
  10. {
  11. Vector<String> arguments;
  12. #ifdef ATOMIC_PLATFORM_WINDOWS
  13. arguments = ParseArguments(GetCommandLineW());
  14. #else
  15. arguments = ParseArguments(argc, argv);
  16. #endif
  17. Run(arguments);
  18. return 0;
  19. }