38 #include "CoherentUIJSEvent.generated.h"
44 UCLASS(MinimalAPI, BlueprintType, Blueprintable, notplaceable)
47 GENERATED_UCLASS_BODY()
51 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
52 void AddInt32(int32 integer);
55 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
56 void AddUInt32(uint32 integer);
59 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
60 void AddString(
const FString& str);
63 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
64 void AddFloat(
float fl);
67 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
71 UFUNCTION(BlueprintCallable, Category =
"ViewScripting")
72 void AddObject(UObject*
object);
90 TArray<FString> Strings;
93 TArray<TWeakObjectPtr<UObject>> Objects;
100 TArray<VariablePair> OrderedVariables;
Definition: CoherentUIJSEvent.h:45