leopard8352
2023-12-04 8871a733498c8d717714b83bb096b7738224541a
提交 | 用户 | 时间
8871a7 1 // Fill out your copyright notice in the Description page of Project Settings.
L 2
3 #pragma once
4
5 #include "CoreMinimal.h"
6 #include "UObject/Object.h"
7 #include "TapRankUpdateRequest.generated.h"
8
9 USTRUCT(BlueprintType)
10 struct TAPTAP_API FTapRankUpdateRequestItem
11 {
12     GENERATED_BODY()
13 public:
14     UPROPERTY(EditAnywhere,BlueprintReadWrite)
15     FString statisticName;
16     UPROPERTY(EditAnywhere,BlueprintReadWrite)
17     int32 statisticValue = 0;
18 };
19 /**
20  * 
21  */
22 USTRUCT(BlueprintType)
23 struct TAPTAP_API FTapRankUpdateRequest
24 {
25     GENERATED_BODY()
26 public:
27     UPROPERTY(EditAnywhere,BlueprintReadWrite)
28     TArray<FTapRankUpdateRequestItem> results;
29 };