// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved // Please see LICENSE.md in repository root for license information // https://github.com/AtomicGameEngine/AtomicGameEngine #pragma once #include using namespace Atomic; namespace AtomicEditor { class ProjectUtils : public Object { OBJECT(ProjectUtils); void OpenProjectFileDialog(); String NewProjectFileDialog(); void RevealInFinder(const String& fullpath); String GetBuildPath(const String& defaultPath); String GetAndroidSDKPath(const String& defaultPath); public: /// Construct. ProjectUtils(Context* context); /// Destruct. ~ProjectUtils(); }; }