Files
UnrealEngine/Engine/Source/Runtime/MovieScene/Private/EventHandlers/ISectionEventHandler.cpp
2025-05-18 13:04:45 +08:00

19 lines
480 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "EventHandlers/ISectionEventHandler.h"
#include "MovieSceneSection.h"
namespace UE
{
namespace MovieScene
{
// void ISectionEventHandler::BindTo(UMovieSceneSection* InSection)
// {
// ensureMsgf(!IsLinked(), TEXT("This event handler is already bound - the previous binding will no longer apply. Please call Unlink first."));
// InSection->EventHandlers.Link(this);
// }
} // namespace MovieScene
} // namespace UE