Module.h 732 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/RTTI/RTTI.h>
  9. #include <AzCore/Module/Module.h>
  10. #include <RPI.Private/RPISystemComponent.h>
  11. namespace AZ
  12. {
  13. namespace RPI
  14. {
  15. class Module
  16. : public AZ::Module
  17. {
  18. public:
  19. AZ_RTTI(Module, "{CDB54E96-717D-4DFC-BEA6-F809BDE601AE}", AZ::Module);
  20. Module();
  21. ~Module() override = default;
  22. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  23. };
  24. } // namespace RPI
  25. } // namespace RPI