天梯排行榜

This commit is contained in:
YiHan0621
2025-09-01 17:25:59 +08:00
parent 4e05e3d87f
commit 37fc708d5d
16 changed files with 3355 additions and 36 deletions

View File

@@ -0,0 +1,28 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TcgEngine
{
[System.Serializable]
public class LadderConfig
{
public int Id;
public int Rank;
public string RankName;
public int Level;
public int BeginStar;
public int RankDownStar;
public int MaxStar;
public int WinGetStar;
public int ExtraGetStar;
public int LoseLostStar;
public int LoseRankDown;
public int RankScore;
public int AITimes;
public string AIDeck;
public int WaitTime;
public int MaxWaitTime;
}
}