3
0

ImGuiEditorWindowModule.cpp 739 B

123456789101112131415161718192021222324252627282930
  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 "ImGuiGem.h"
  9. namespace ImGui
  10. {
  11. class ImGuiEditorWindowModule
  12. : public ImGuiModule
  13. {
  14. public:
  15. AZ_RTTI(ImGuiEditorWindowModule, "{DDC7A763-A36F-46D8-9885-43E0293C1D03}", ImGuiModule);
  16. ImGuiEditorWindowModule()
  17. : ImGuiModule()
  18. {
  19. }
  20. };
  21. }
  22. #if defined(O3DE_GEM_NAME)
  23. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), ImGui::ImGuiEditorWindowModule)
  24. #else
  25. AZ_DECLARE_MODULE_CLASS(Gem_ImGuiEditorWindow, ImGui::ImGuiEditorWindowModule)
  26. #endif