3
0

ImGuiNoOpStubModule.cpp 741 B

123456789101112131415161718192021222324252627
  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. namespace ImGui
  9. {
  10. /*!
  11. * The ImGui::Module class coordinates with the application
  12. * to reflect classes and create system components.
  13. */
  14. class ImGuiModule : public AZ::Module
  15. {
  16. public:
  17. AZ_RTTI(ImGuiModule, "{ECA9F41C-716E-4395-A096-5A519227F9A4}", AZ::Module);
  18. ImGuiModule() : AZ::Module() {}
  19. };
  20. }
  21. #if defined(O3DE_GEM_NAME)
  22. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), ImGui::ImGuiModule)
  23. #else
  24. AZ_DECLARE_MODULE_CLASS(Gem_ImGui, ImGui::ImGuiModule)
  25. #endif