Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.15 KB

File metadata and controls

44 lines (30 loc) · 1.15 KB
author title description ms.author ms.topic ms.service ms.date
ScottMunroMS
PFEntityKey - PlayFab Multiplayer SDK
PFEntityKey data model. Combined entity type and ID structure which uniquely identifies a single entity.
scmunro
reference
playfab
03/10/2022

PFEntityKey

PFEntityKey data model. Combined entity type and ID structure which uniquely identifies a single entity.

Syntax

typedef struct PFEntityKey {  
    const char* id;  
    const char* type;  
} PFEntityKey;  

Members

id   const char*
Null_terminated

Unique ID of the entity.

type   const char*
Null_terminated

Entity type. See Available built-in entity types.

Player entities are typically the title_player_account type. For more information, see Available built-in entity types.

Remarks

For more information about entities, see Entity Programming Model.

Requirements

Header: PFEntityKey.h