Files
o3de/Code/CryEngine/CryCommon/Maestro/Bus/EditorSequenceBus.h
T
2021-06-23 10:55:22 -07:00

31 lines
683 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/Component/ComponentBus.h>
#include <AzCore/EBus/EBus.h>
namespace Maestro
{
/**
* Global Notifications from the Editor Sequences
*/
class EditorSequenceNotification
: public AZ::EBusTraits
{
public:
/**
* Called when a Sequence has been selected in Track View.
*/
virtual void OnSequenceSelected([[maybe_unused]] const AZ::EntityId& sequenceEntityId) {}
};
using EditorSequenceNotificationBus = AZ::EBus<EditorSequenceNotification>;
} // namespace Maestro