EM_Task/UnrealEd/Private/FractureToolDelegates.cpp
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

12 lines
301 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "FractureToolDelegates.h"
/** Return a single FFractureToolDelegates object */
FFractureToolDelegates& FFractureToolDelegates::Get()
{
// return the singleton object
static FFractureToolDelegates Singleton;
return Singleton;
}