Add ProjectStorageService and generated ProjectStorage models
This commit is contained in:
@@ -29,6 +29,9 @@ public sealed class RudderClient
|
||||
/// <summary>Player key-value storage.</summary>
|
||||
public StorageService Storage { get; }
|
||||
|
||||
/// <summary>Project key-value storage (global, shared across players).</summary>
|
||||
public ProjectStorageService ProjectStorage { get; }
|
||||
|
||||
/// <summary>In-game stores and offer purchases.</summary>
|
||||
public StoresService Stores { get; }
|
||||
|
||||
@@ -86,6 +89,7 @@ public sealed class RudderClient
|
||||
Player = new PlayerService(this);
|
||||
RemoteConfig = new RemoteConfigService(this);
|
||||
Storage = new StorageService(this);
|
||||
ProjectStorage = new ProjectStorageService(this);
|
||||
Stores = new StoresService(this);
|
||||
Leaderboards = new LeaderboardsService(this);
|
||||
Inventory = new InventoryService(this);
|
||||
|
||||
Reference in New Issue
Block a user