EditorCommon.cpp 753 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #include <platform.h>
  9. #include "EditorCommon.h"
  10. #include "EditorCommonAPI.h"
  11. #include <CryCommon/ISystem.h>
  12. CEditorCommonApp::CEditorCommonApp()
  13. {
  14. }
  15. void EDITOR_COMMON_API InitializeEditorCommon([[maybe_unused]] IEditor* editor)
  16. {
  17. }
  18. void EDITOR_COMMON_API UninitializeEditorCommon()
  19. {
  20. }
  21. void EDITOR_COMMON_API InitializeEditorCommonISystem(ISystem* pSystem)
  22. {
  23. ModuleInitISystem(pSystem, "EditorCommon");
  24. }
  25. void EDITOR_COMMON_API UninitializeEditorCommonISystem(ISystem* pSystem)
  26. {
  27. ModuleShutdownISystem(pSystem);
  28. }