SceneProcessingModuleStub.cpp 971 B

12345678910111213141516171819202122232425262728293031323334353637
  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. #if !defined(SCENE_PROCESSING_EDITOR)
  9. #include <AzCore/RTTI/RTTI.h>
  10. #include <AzCore/Module/Module.h>
  11. namespace AZ
  12. {
  13. namespace SceneProcessing
  14. {
  15. class SceneProcessingModuleStub
  16. : public Module
  17. {
  18. public:
  19. AZ_RTTI(SceneProcessingModuleStub, "{23438D63-EA7F-425B-82F2-5B45C072B4E5}", Module);
  20. SceneProcessingModuleStub()
  21. : Module()
  22. {
  23. }
  24. };
  25. } // namespace SceneProcessing
  26. } // namespace AZ
  27. #if defined(O3DE_GEM_NAME)
  28. AZ_DECLARE_MODULE_CLASS(AZ_JOIN(Gem_, O3DE_GEM_NAME), AZ::SceneProcessing::SceneProcessingModuleStub)
  29. #else
  30. AZ_DECLARE_MODULE_CLASS(Gem_SceneProcessing, AZ::SceneProcessing::SceneProcessingModuleStub)
  31. #endif
  32. #endif