EditorSurfaceDataColliderComponent.cpp 865 B

12345678910111213141516171819202122
  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 "EditorSurfaceDataColliderComponent.h"
  9. #include <AzCore/Serialization/Utils.h>
  10. #include <AzToolsFramework/API/ToolsApplicationAPI.h>
  11. #include <AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h>
  12. #include <LmbrCentral/Dependency/DependencyNotificationBus.h>
  13. namespace SurfaceData
  14. {
  15. void EditorSurfaceDataColliderComponent::Reflect(AZ::ReflectContext* context)
  16. {
  17. BaseClassType::ReflectSubClass<EditorSurfaceDataColliderComponent, BaseClassType>(context, 2, &LmbrCentral::EditorWrappedComponentBaseVersionConverter<typename BaseClassType::WrappedComponentType, typename BaseClassType::WrappedConfigType,2>);
  18. }
  19. }