UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
PropertyConditionsDelegates.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
8
9namespace UE::Net::Private
10{
11
13{
14public:
15 using FOnPropertyCustomConditionChanged = TMulticastDelegate<void(const UObject* OwningObject, const uint16 RepIndex, const bool bActive)>;
16 using FOnPropertyDynamicConditionChanged = TMulticastDelegate<void(const UObject* OwningObject, const uint16 RepIndex, const ELifetimeCondition Condition)>;
17
18 static FOnPropertyCustomConditionChanged& GetOnPropertyCustomConditionChangedDelegate() { return OnPropertyCustomConditionChangedDelegate; }
19 static FOnPropertyDynamicConditionChanged& GetOnPropertyDynamicConditionChangedDelegate() { return OnPropertyDynamicConditionChangedDelegate; }
20
21private:
22 static NETCORE_API FOnPropertyCustomConditionChanged OnPropertyCustomConditionChangedDelegate;
23 static NETCORE_API FOnPropertyDynamicConditionChanged OnPropertyDynamicConditionChangedDelegate;
24};
25
26} // UE::Net::Private
27
OODEFFUNC typedef void(OODLE_CALLBACK t_fp_OodleCore_Plugin_Free)(void *ptr)
ELifetimeCondition
Definition CoreNetTypes.h:20
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
uint16_t uint16
Definition binka_ue_file_header.h:7
Definition DelegateSignatureImpl.inl:1029
Definition PropertyConditionsDelegates.h:13
static FOnPropertyCustomConditionChanged & GetOnPropertyCustomConditionChangedDelegate()
Definition PropertyConditionsDelegates.h:18
TMulticastDelegate< void(const UObject *OwningObject, const uint16 RepIndex, const ELifetimeCondition Condition)> FOnPropertyDynamicConditionChanged
Definition PropertyConditionsDelegates.h:16
static FOnPropertyDynamicConditionChanged & GetOnPropertyDynamicConditionChangedDelegate()
Definition PropertyConditionsDelegates.h:19
TMulticastDelegate< void(const UObject *OwningObject, const uint16 RepIndex, const bool bActive)> FOnPropertyCustomConditionChanged
Definition PropertyConditionsDelegates.h:15
Definition Object.h:95
int
Definition TestServer.py:515
Definition NetworkVersion.cpp:28