Files
UnrealEngine/Engine/Source/Runtime/AdvancedWidgets/Public/Framework/PropertyViewer/INotifyHook.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
356 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Framework/PropertyViewer/PropertyPath.h"
namespace UE::PropertyViewer
{
/** */
class INotifyHook
{
public:
virtual void OnPreValueChange(const FPropertyPath& Path) = 0;
virtual void OnPostValueChange(const FPropertyPath& Path) = 0;
};
} //namespace