DccScriptingInterfaceModuleInterface.h 974 B

12345678910111213141516171819202122232425262728293031323334
  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/SystemAllocator.h>
  9. #include <AzCore/Module/Module.h>
  10. namespace DccScriptingInterface
  11. {
  12. class DccScriptingInterfaceModuleInterface
  13. : public AZ::Module
  14. {
  15. public:
  16. AZ_RTTI(DccScriptingInterfaceModuleInterface, "{BCD5EF47-6B00-4EA6-B28E-19F464316414}", AZ::Module);
  17. AZ_CLASS_ALLOCATOR(DccScriptingInterfaceModuleInterface, AZ::SystemAllocator);
  18. DccScriptingInterfaceModuleInterface()
  19. {
  20. }
  21. /**
  22. * Add required SystemComponents to the SystemEntity.
  23. */
  24. AZ::ComponentTypeList GetRequiredSystemComponents() const override
  25. {
  26. return AZ::ComponentTypeList{
  27. };
  28. }
  29. };
  30. }// namespace DccScriptingInterface