${Name}ModuleInterface.h 921 B

12345678910111213141516171819202122232425262728293031323334
  1. // {BEGIN_LICENSE}
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. // {END_LICENSE}
  10. #include <AzCore/Memory/Memory_fwd.h>
  11. #include <AzCore/Module/Module.h>
  12. #include <AzCore/RTTI/RTTIMacros.h>
  13. #include <AzCore/RTTI/TypeInfoSimple.h>
  14. namespace ${SanitizedCppName}
  15. {
  16. class ${SanitizedCppName}ModuleInterface
  17. : public AZ::Module
  18. {
  19. public:
  20. AZ_TYPE_INFO_WITH_NAME_DECL(${SanitizedCppName}ModuleInterface)
  21. AZ_RTTI_NO_TYPE_INFO_DECL()
  22. AZ_CLASS_ALLOCATOR_DECL
  23. ${SanitizedCppName}ModuleInterface();
  24. /**
  25. * Add required SystemComponents to the SystemEntity.
  26. */
  27. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  28. };
  29. }// namespace ${SanitizedCppName}