| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
-
- #include <AzCore/Memory/SystemAllocator.h>
- #include <AzCore/Module/Module.h>
- namespace DccScriptingInterface
- {
- class DccScriptingInterfaceModuleInterface
- : public AZ::Module
- {
- public:
- AZ_RTTI(DccScriptingInterfaceModuleInterface, "{BCD5EF47-6B00-4EA6-B28E-19F464316414}", AZ::Module);
- AZ_CLASS_ALLOCATOR(DccScriptingInterfaceModuleInterface, AZ::SystemAllocator);
- DccScriptingInterfaceModuleInterface()
- {
- }
- /**
- * Add required SystemComponents to the SystemEntity.
- */
- AZ::ComponentTypeList GetRequiredSystemComponents() const override
- {
- return AZ::ComponentTypeList{
- };
- }
- };
- }// namespace DccScriptingInterface
|