leopard8352
2023-12-04 8871a733498c8d717714b83bb096b7738224541a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Fill out your copyright notice in the Description page of Project Settings.
 
#pragma once
 
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "TapRankResponse.generated.h"
 
USTRUCT(BlueprintType)
struct FTapRankUser
{
    GENERATED_BODY()
public:
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FString nickname;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FString avatar;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FString objectId;
};
 
USTRUCT(BlueprintType)
struct FTapRankResult
{
    GENERATED_BODY()
public:
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FString statisticName;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    int32 statisticValue = 0;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    int32 rank = 0;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FTapRankUser user;
};
/**
 * 
 */
USTRUCT(BlueprintType)
struct TAPTAP_API FTapRankResponse// : public UObject
{
    GENERATED_BODY()
public:
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    FString statistics;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    int32 count = 0;
    UPROPERTY(EditAnywhere,BlueprintReadWrite)
    TArray<FTapRankResult> results;
};