Files
o3de/Gems/Vegetation/Code/Source/DebugSystemComponent.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

48 lines
1.4 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/Component/Component.h>
#include <Vegetation/Ebuses/DebugSystemDataBus.h>
namespace Vegetation
{
/**
* The system component that manages debug data
*/
class DebugSystemComponent
: public AZ::Component
, public DebugSystemDataBus::Handler
{
public:
AZ_COMPONENT(DebugSystemComponent, "{A8E3D8D4-B6A5-48A6-90D6-153F9EFDF75E}");
static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& services);
static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& services);
static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& services);
static void Reflect(AZ::ReflectContext* context);
DebugSystemComponent();
~DebugSystemComponent() override;
//////////////////////////////////////////////////////////////////////////
// DebugSystemDataBus
DebugData* GetDebugData() override;
private:
//////////////////////////////////////////////////////////////////////////
// AZ::Component
void Activate() override;
void Deactivate() override;
DebugData m_debugData;
};
} // namespace Vegetation