WarehouseAutomationModuleInterface.cpp 1.1 KB

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. #include "WarehouseAutomationModuleInterface.h"
  9. #include <AzCore/Memory/Memory.h>
  10. #include <ConveyorBelt/ConveyorBeltComponent.h>
  11. #include <ProximitySensor/ProximitySensor.h>
  12. namespace WarehouseAutomation
  13. {
  14. AZ_TYPE_INFO_WITH_NAME_IMPL(
  15. WarehouseAutomationModuleInterface, "WarehouseAutomationModuleInterface", "{6584FD8A-0FDA-48CD-A2E6-43F08CC9407E}");
  16. AZ_RTTI_NO_TYPE_INFO_IMPL(WarehouseAutomationModuleInterface, AZ::Module);
  17. AZ_CLASS_ALLOCATOR_IMPL(WarehouseAutomationModuleInterface, AZ::SystemAllocator);
  18. WarehouseAutomationModuleInterface::WarehouseAutomationModuleInterface()
  19. {
  20. m_descriptors.insert(
  21. m_descriptors.end(),
  22. {
  23. ConveyorBeltComponent::CreateDescriptor(),
  24. ProximitySensor::CreateDescriptor(),
  25. });
  26. }
  27. } // namespace WarehouseAutomation