Add ProjectStorageService and generated ProjectStorage models

This commit is contained in:
edmand46
2026-08-12 23:58:31 +03:00
parent 8cf738d9f0
commit 91c3d46ceb
6 changed files with 153 additions and 0 deletions
+4
View File
@@ -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);