-
Notifications
You must be signed in to change notification settings - Fork 25
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/#240913
- Loading branch information
Showing
35 changed files
with
634 additions
and
245 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
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
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
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
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
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
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,43 @@ | ||
#pragma once | ||
|
||
#if defined(ENABLE_PLAYFABSERVER_API) | ||
|
||
#include <playfab/PlayFabMatchmakerDataModels.h> | ||
#include <playfab/PlayFabError.h> | ||
|
||
namespace PlayFab | ||
{ | ||
class CallRequestContainerBase; | ||
class CallRequestContainer; | ||
|
||
/// <summary> | ||
/// Main interface for PlayFab Sdk, specifically all Matchmaker APIs | ||
/// </summary> | ||
class PlayFabMatchmakerAPI | ||
{ | ||
public: | ||
/// <summary> | ||
/// Calls the Update function on your implementation of the IHttpPlugin to check for responses to HTTP requests. | ||
/// All api's (Client, Server, Admin etc.) share the same IHttpPlugin. | ||
/// This means that you only need to call Update() on one API to retrieve the responses for all APIs. | ||
/// Additional calls to Update (on any API) during the same tick are unlikely to retrieve additional responses. | ||
/// Call Update when your game ticks as follows: | ||
/// Matchmaker.Update(); | ||
/// </summary> | ||
static size_t Update(); | ||
static void ForgetAllCredentials(); | ||
|
||
|
||
// ------------ Generated API calls | ||
|
||
private: | ||
PlayFabMatchmakerAPI(); // Private constructor, static class should never have an instance | ||
PlayFabMatchmakerAPI(const PlayFabMatchmakerAPI& other); // Private copy-constructor, static class should never have an instance | ||
|
||
// ------------ Generated result handlers | ||
|
||
static bool ValidateResult(PlayFabResultCommon& resultCommon, const CallRequestContainer& container); | ||
}; | ||
} | ||
|
||
#endif // #if defined(ENABLE_PLAYFABSERVER_API) |
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,18 @@ | ||
#pragma once | ||
|
||
#if defined(ENABLE_PLAYFABSERVER_API) | ||
|
||
#include <playfab/PlayFabBaseModel.h> | ||
#include <playfab/PlayFabJsonHeaders.h> | ||
#include <playfab/PlayFabPlatformUtils.h> | ||
|
||
namespace PlayFab | ||
{ | ||
namespace MatchmakerModels | ||
{ | ||
// Matchmaker Enums | ||
// Matchmaker Classes | ||
} | ||
} | ||
|
||
#endif |
Oops, something went wrong.