Files
o3de/Gems/Vegetation/Code/Source/Editor/EditorScaleModifierComponent.cpp
T
2021-06-23 10:55:22 -07:00

20 lines
655 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "EditorScaleModifierComponent.h"
#include <AzCore/Serialization/SerializeContext.h>
#include <AzCore/Serialization/EditContext.h>
#include <LmbrCentral/Dependency/DependencyNotificationBus.h>
namespace Vegetation
{
void EditorScaleModifierComponent::Reflect(AZ::ReflectContext* context)
{
ReflectSubClass<EditorScaleModifierComponent, BaseClassType>(context, 1, &EditorVegetationComponentBaseVersionConverter<typename BaseClassType::WrappedComponentType, typename BaseClassType::WrappedConfigType>);
}
}