Files
UnrealEngine/Engine/Source/Runtime/AdvancedWidgets/Public/Framework/PropertyViewer/INotifyHook.h
2025-05-18 13:04:45 +08: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