ModuleStub_Unimplemented.cpp 763 B

12345678910111213141516171819202122232425262728293031
  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 <AzCore/Module/Module.h>
  9. namespace AZ
  10. {
  11. namespace XR
  12. {
  13. class Module
  14. : public AZ::Module
  15. {
  16. public:
  17. AZ_RTTI(Module, "{3A378AD3-B176-43F4-A49B-9D9FE053243A}", AZ::Module);
  18. Module() = default;
  19. ~Module() override = default;
  20. AZ::ComponentTypeList GetRequiredSystemComponents() const override
  21. {
  22. return AZ::ComponentTypeList();
  23. }
  24. };
  25. }
  26. }
  27. AZ_DECLARE_MODULE_CLASS(Gem_XR_Private, AZ::XR::Module)