SimulationInterfacesModuleInterface.h 883 B

123456789101112131415161718192021222324252627282930
  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/Memory/Memory_fwd.h>
  9. #include <AzCore/Module/Module.h>
  10. #include <AzCore/RTTI/RTTIMacros.h>
  11. #include <AzCore/RTTI/TypeInfoSimple.h>
  12. namespace SimulationInterfaces
  13. {
  14. class SimulationInterfacesModuleInterface : public AZ::Module
  15. {
  16. public:
  17. AZ_TYPE_INFO_WITH_NAME_DECL(SimulationInterfacesModuleInterface)
  18. AZ_RTTI_NO_TYPE_INFO_DECL()
  19. AZ_CLASS_ALLOCATOR_DECL
  20. SimulationInterfacesModuleInterface();
  21. /**
  22. * Add required SystemComponents to the SystemEntity.
  23. */
  24. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  25. };
  26. } // namespace SimulationInterfaces