ProjectUtils.h 696 B

123456789101112131415161718192021222324252627282930313233
  1. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  2. // Please see LICENSE.md in repository root for license information
  3. // https://github.com/AtomicGameEngine/AtomicGameEngine
  4. #pragma once
  5. #include <Atomic/Core/Object.h>
  6. using namespace Atomic;
  7. namespace AtomicEditor
  8. {
  9. class ProjectUtils : public Object
  10. {
  11. OBJECT(ProjectUtils);
  12. void OpenProjectFileDialog();
  13. String NewProjectFileDialog();
  14. void RevealInFinder(const String& fullpath);
  15. String GetBuildPath(const String& defaultPath);
  16. String GetAndroidSDKPath(const String& defaultPath);
  17. public:
  18. /// Construct.
  19. ProjectUtils(Context* context);
  20. /// Destruct.
  21. ~ProjectUtils();
  22. };
  23. }