Moving Response

This commit is contained in:
2024-07-17 19:02:46 +02:00
parent dd40f7fc02
commit d447fc5ee1
2 changed files with 12 additions and 10 deletions

View File

@ -526,16 +526,6 @@ struct DTFLUXAPI_API FDTFluxFinisher
FDTFluxStageRanking CurrentRanking; FDTFluxStageRanking CurrentRanking;
}; };
USTRUCT(BlueprintType, Category="DTFlux|Subsystem|Events")
struct DTFLUXAPI_API FDTFluxWsResponseEvent
{
GENERATED_BODY()
UPROPERTY(BlueprintReadOnly, Category="DTFlux|Subsystem|Events")
TEnumAsByte<EDTFluxResponseType> WsResponseType;
UPROPERTY(BlueprintReadOnly, Category="DTFlux|Subsystem|Events")
FString RawData;
};
USTRUCT(BlueprintType, Category="DTFlux|Subsystem|Events") USTRUCT(BlueprintType, Category="DTFlux|Subsystem|Events")
struct DTFLUXAPI_API FDTFluxStageFinished struct DTFLUXAPI_API FDTFluxStageFinished

View File

@ -311,4 +311,16 @@ struct DTFLUXAPI_API FDTFluxArchSelectResponse
TArray<FDTFluxArchSelectResponseItem> Datas; TArray<FDTFluxArchSelectResponseItem> Datas;
};
USTRUCT(BlueprintType, Category="DTFlux|Subsystem|Events")
struct DTFLUXAPI_API FDTFluxWsResponseEvent
{
GENERATED_BODY()
UPROPERTY(BlueprintReadOnly, Category="DTFlux|Subsystem|Events")
TEnumAsByte<EDTFluxResponseType> WsResponseType;
UPROPERTY(BlueprintReadOnly, Category="DTFlux|Subsystem|Events")
FString RawData;
}; };