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

27 lines
746 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#include "EditorAreaDebugComponent.h"
#include <AzCore/Serialization/Utils.h>
#include <AzCore/base.h>
#include <AzToolsFramework/API/ToolsApplicationAPI.h>
#include <AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h>
#include <Vegetation/Ebuses/AreaSystemRequestBus.h>
#include <Vegetation/Ebuses/InstanceSystemRequestBus.h>
#include <VegetationSystemComponent.h>
#include <Debugger/DebugComponent.h>
namespace Vegetation
{
void EditorAreaDebugComponent::Reflect(AZ::ReflectContext* context)
{
EditorVegetationComponentBase::ReflectSubClass<EditorAreaDebugComponent, BaseClassType>(context);
}
}