Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
472 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "WidgetEventField.generated.h"
/**
* Generic structure to notify when an event occurs.
*
* class UMyWidget : public UWidget
* {
* UPROPERTY(FieldNotify)
* FWidgetEventField SomeEvent;
*
* void OnSomeEvent()
* {
* BroadcastFieldValueChanged(FFieldNotificationClassDescriptor::Text);
* }
* };
};
*/
USTRUCT(BlueprintType)
struct FWidgetEventField
{
GENERATED_BODY()
};