You've already forked LuckyWorld
Optimizing WB_MainScreen
This commit is contained in:
@ -73,11 +73,11 @@ public:
|
||||
|
||||
|
||||
/** Generate a delegates for callback events */
|
||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnRequestComplete, class USIOJRequestJSON*, Request);
|
||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FOnRequestFail, class USIOJRequestJSON*, Request);
|
||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FSIOJOnRequestComplete, class USIOJRequestJSON*, Request);
|
||||
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FSIOJOnRequestFail, class USIOJRequestJSON*, Request);
|
||||
|
||||
DECLARE_MULTICAST_DELEGATE_OneParam(FOnStaticRequestComplete, class USIOJRequestJSON*);
|
||||
DECLARE_MULTICAST_DELEGATE_OneParam(FOnStaticRequestFail, class USIOJRequestJSON*);
|
||||
DECLARE_MULTICAST_DELEGATE_OneParam(FSIOJOnStaticRequestComplete, class USIOJRequestJSON*);
|
||||
DECLARE_MULTICAST_DELEGATE_OneParam(FSIOJOnStaticRequestFail, class USIOJRequestJSON*);
|
||||
|
||||
|
||||
/**
|
||||
@ -216,17 +216,17 @@ private:
|
||||
public:
|
||||
/** Event occured when the request has been completed */
|
||||
UPROPERTY(BlueprintAssignable, Category = "SIOJ|Event")
|
||||
FOnRequestComplete OnRequestComplete;
|
||||
FSIOJOnRequestComplete OnRequestComplete;
|
||||
|
||||
/** Event occured when the request wasn't successfull */
|
||||
UPROPERTY(BlueprintAssignable, Category = "SIOJ|Event")
|
||||
FOnRequestFail OnRequestFail;
|
||||
FSIOJOnRequestFail OnRequestFail;
|
||||
|
||||
/** Event occured when the request has been completed */
|
||||
FOnStaticRequestComplete OnStaticRequestComplete;
|
||||
FSIOJOnStaticRequestComplete OnStaticRequestComplete;
|
||||
|
||||
/** Event occured when the request wasn't successfull */
|
||||
FOnStaticRequestFail OnStaticRequestFail;
|
||||
FSIOJOnStaticRequestFail OnStaticRequestFail;
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user