Addressed multiple minor CR comments.

Signed-off-by: Danilo Aimini <82231674+AMZN-daimini@users.noreply.github.com>
This commit is contained in:
Danilo Aimini
2021-09-24 18:49:17 -07:00
parent ebb996d7f1
commit f012407506
7 changed files with 35 additions and 29 deletions
@@ -13,12 +13,16 @@
namespace AzToolsFramework
{
//! Used to notify when the editor focus changes.
class FocusModeNotifications
: public AZ::EBusTraits
{
public:
virtual ~FocusModeNotifications() = default;
protected:
~FocusModeNotifications() = default;
public:
//! Triggered when the editor focus is changed to a different entity.
//! @param entityId The entity the focus has been moved to.
virtual void OnEditorFocusChanged(AZ::EntityId entityId) = 0;
};