NewProjectCmd.h 425 B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include "Command.h"
  3. using namespace Atomic;
  4. namespace ToolCore
  5. {
  6. class NewProjectCmd: public Command
  7. {
  8. OBJECT(NewProjectCmd);
  9. public:
  10. NewProjectCmd(Context* context);
  11. virtual ~NewProjectCmd();
  12. bool Parse(const Vector<String>& arguments, unsigned startIndex, String& errorMsg);
  13. void Run();
  14. bool RequiresProjectLoad() { return false; }
  15. private:
  16. String projectPath_;
  17. };
  18. }