加入用户最近100场战绩记录并实现展示

This commit is contained in:
FloatGaming
2026-03-16 23:18:58 +08:00
parent ec42f2e34b
commit f5c6f143c0
106 changed files with 12120 additions and 642 deletions
@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
[Serializable]
public class StoreOwnershipEntry
{
public int storeItemId;
public bool owned;
public List<int> unlockedStorySonIds = new List<int>();
}
[Serializable]
public class StoreOwnershipPayload
{
public int version;
public long lastUpdatedUtcTicks;
public List<StoreOwnershipEntry> entries = new List<StoreOwnershipEntry>();
}
[Serializable]
public class StoreOwnershipEnvelope
{
public string payload;
public string signature;
}