EditorAreaDebugComponent.cpp 847 B

123456789101112131415161718192021222324252627
  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 "EditorAreaDebugComponent.h"
  9. #include <AzCore/Serialization/Utils.h>
  10. #include <AzCore/base.h>
  11. #include <AzToolsFramework/API/ToolsApplicationAPI.h>
  12. #include <AzToolsFramework/UI/PropertyEditor/PropertyEditorAPI.h>
  13. #include <Vegetation/Ebuses/AreaSystemRequestBus.h>
  14. #include <Vegetation/Ebuses/InstanceSystemRequestBus.h>
  15. #include <VegetationSystemComponent.h>
  16. #include <Debugger/DebugComponent.h>
  17. namespace Vegetation
  18. {
  19. void EditorAreaDebugComponent::Reflect(AZ::ReflectContext* context)
  20. {
  21. EditorVegetationComponentBase::ReflectSubClass<EditorAreaDebugComponent, BaseClassType>(context);
  22. }
  23. }