blob: 75a4a83f9577dd36f84482bb44db9dd2e22e2003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
public class RankRewardStatus
{
public uint rank;
public bool isRange;
public SeqListRef<uint> reward = default(SeqListRef<uint>);
}
}
|