-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240802
- Loading branch information
Showing
452 changed files
with
186,845 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
413 changes: 413 additions & 0 deletions
413
4.23/ExampleProject/Plugins/PlayFab/Source/PlayFab/Classes/PlayFabLeaderboardsAPI.h
Large diffs are not rendered by default.
Oops, something went wrong.
99 changes: 99 additions & 0 deletions
99
4.23/ExampleProject/Plugins/PlayFab/Source/PlayFab/Classes/PlayFabLeaderboardsModelDecoder.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
////////////////////////////////////////////////////// | ||
// Copyright (C) Microsoft. 2018. All rights reserved. | ||
////////////////////////////////////////////////////// | ||
|
||
|
||
#pragma once | ||
|
||
////////////////////////////////////////////////////////////////////////////////////////////// | ||
// Automatically generated model file for the UE4 PlayFab plugin. | ||
// This model file contains the request and response USTRUCTS | ||
// | ||
// API: Leaderboards | ||
////////////////////////////////////////////////////////////////////////////////////////////// | ||
|
||
#include "CoreMinimal.h" | ||
#include "Kismet/BlueprintFunctionLibrary.h" | ||
#include "PlayFabEnums.h" | ||
#include "PlayFabLeaderboardsModels.h" | ||
#include "PlayFabLeaderboardsModelDecoder.generated.h" | ||
|
||
class UPlayFabJsonObject; | ||
|
||
UCLASS() | ||
class PLAYFAB_API UPlayFabLeaderboardsModelDecoder : public UBlueprintFunctionLibrary | ||
{ | ||
GENERATED_BODY() | ||
|
||
public: | ||
|
||
////////////////////////////////////////////////////////////////////////// | ||
// Generated PlayFab Leaderboards API Functions | ||
////////////////////////////////////////////////////////////////////////// | ||
|
||
|
||
/////////////////////////////////////////////////////// | ||
// Leaderboards | ||
////////////////////////////////////////////////////// | ||
|
||
/** Decode the EmptyResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Leaderboards Models") | ||
static FLeaderboardsEmptyResponse decodeEmptyResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetLeaderboardDefinitionResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Leaderboards Models") | ||
static FLeaderboardsGetLeaderboardDefinitionResponse decodeGetLeaderboardDefinitionResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the IncrementLeaderboardVersionResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Leaderboards Models") | ||
static FLeaderboardsIncrementLeaderboardVersionResponse decodeIncrementLeaderboardVersionResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the ListLeaderboardDefinitionsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Leaderboards Models") | ||
static FLeaderboardsListLeaderboardDefinitionsResponse decodeListLeaderboardDefinitionsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
|
||
|
||
/////////////////////////////////////////////////////// | ||
// Statistics and Leaderboards | ||
////////////////////////////////////////////////////// | ||
|
||
/** Decode the DeleteStatisticsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsDeleteStatisticsResponse decodeDeleteStatisticsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetEntityLeaderboardResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsGetEntityLeaderboardResponse decodeGetEntityLeaderboardResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetStatisticDefinitionResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsGetStatisticDefinitionResponse decodeGetStatisticDefinitionResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetStatisticDefinitionsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsGetStatisticDefinitionsResponse decodeGetStatisticDefinitionsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetStatisticsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsGetStatisticsResponse decodeGetStatisticsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the GetStatisticsForEntitiesResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsGetStatisticsForEntitiesResponse decodeGetStatisticsForEntitiesResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the IncrementStatisticVersionResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsIncrementStatisticVersionResponse decodeIncrementStatisticVersionResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the ListStatisticDefinitionsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsListStatisticDefinitionsResponse decodeListStatisticDefinitionsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
/** Decode the UpdateStatisticsResponse response object*/ | ||
UFUNCTION(BlueprintCallable, Category = "PlayFab | Leaderboards | Statistics and Leaderboards Models") | ||
static FLeaderboardsUpdateStatisticsResponse decodeUpdateStatisticsResponseResponse(UPlayFabJsonObject* response); | ||
|
||
|
||
|
||
}; |
Oops, something went wrong.