PlatformAddCmd.h 660 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #pragma once
  8. #include "Command.h"
  9. using namespace Atomic;
  10. namespace ToolCore
  11. {
  12. class PlatformAddCmd: public Command
  13. {
  14. OBJECT(PlatformAddCmd);
  15. public:
  16. PlatformAddCmd(Context* context);
  17. virtual ~PlatformAddCmd();
  18. bool Parse(const Vector<String>& arguments, unsigned startIndex, String& errorMsg);
  19. void Run();
  20. private:
  21. String platformToAdd_;
  22. };
  23. }