LyShineModule.h 676 B

1234567891011121314151617181920212223242526272829
  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. #pragma once
  9. #include <IGem.h>
  10. #include <AzCore/Component/Component.h>
  11. namespace LyShine
  12. {
  13. class LyShineModule
  14. : public CryHooksModule
  15. {
  16. public:
  17. AZ_RTTI(LyShineModule, "{5B98FB11-A597-47DB-8BE8-74F44D957C67}", CryHooksModule);
  18. LyShineModule();
  19. /**
  20. * Add required SystemComponents to the SystemEntity.
  21. */
  22. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  23. };
  24. }