UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
INotifyHook.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7
8namespace UE::PropertyViewer
9{
10
13{
14public:
15 virtual void OnPreValueChange(const FPropertyPath& Path) = 0;
16 virtual void OnPostValueChange(const FPropertyPath& Path) = 0;
17};
18
19} //namespace
Definition INotifyHook.h:13
virtual void OnPreValueChange(const FPropertyPath &Path)=0
virtual void OnPostValueChange(const FPropertyPath &Path)=0
Definition FieldIconFinder.cpp:16
Definition PropertyPath.h:27