Files
UnrealEngine/Engine/Plugins/Runtime/nDisplay/Source/DisplayCluster/Private/Misc/DisplayClusterTickableGameObject.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
236 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Misc/DisplayClusterTickableGameObject.h"
void FDisplayClusterTickableGameObject::Tick(float DeltaTime)
{
if (TickEvent.IsBound())
{
TickEvent.Broadcast(DeltaTime);
}
}