Files

13 lines
224 B
C#

namespace TcgEngine
{
public enum PlayerRank
{
Bronze = 1, // 青铜
Silver, // 白银
Gold, // 黄金
Platinum, // 铂金
Diamond, // 钻石
King // 王者
}
}