GetEntitySyncedData
Gets entity data that was set via SetEntitySharedData.
Note that this data is in a different state than non-synced data that you set with SetEntityData (which is only available for the server). To get non-synced data, use GetEntityData instead.
Syntax
```csharp dynamic NAPI.Data.GetEntitySharedData(NetHandle entity, string key); ```
Required Arguments
- entity: parameter input should be in NetHandle type.
- key: parameter input should be in string type.
NOTE: This function returns data in dynamic type.
Usage example(s)
Example Description
```csharp NAPI.Data.GetEntitySharedData(entity, key); ```