WhiteBoxEditorUtil.h 576 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. struct IEditor;
  10. namespace WhiteBox
  11. {
  12. //! Small wrapper around an EBus call to request the file at the given path be added to source control.
  13. void RequestEditSourceControl(const char* absoluteFilePath);
  14. //! Small wrapper around an EBus call to retrieve the IEditor interface.
  15. IEditor* GetIEditor();
  16. } // namespace WhiteBox