You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1016 B
43 lines
1016 B
using ProtoCSStruct;
|
|
using Sog.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Rank
|
|
{
|
|
/// <summary>
|
|
/// 依据某个活动开的排行榜
|
|
/// </summary>
|
|
public class ActRankOne : DataSeqSave
|
|
{
|
|
public int RealmId;
|
|
public int ActRankID;
|
|
public long BeginTime;
|
|
//结算发奖励
|
|
public long EndTime;
|
|
|
|
public bool endClear;
|
|
|
|
//不定时 刷新 实时刷新
|
|
//public List<long> m_rank; //排行榜单 //这个是个结构
|
|
public List<DBActRankTopPlayerInfo> m_rankRank; //排行榜单 //这个是个结构;
|
|
|
|
public ActRankOne()
|
|
{
|
|
m_rankRank = new List<DBActRankTopPlayerInfo>();
|
|
endClear = false;
|
|
}
|
|
}
|
|
|
|
public class ActRemRank
|
|
{
|
|
public Dictionary<int, ActRankOne> m_AcRank;
|
|
public int RealmId;
|
|
|
|
public ActRemRank()
|
|
{
|
|
m_AcRank = new Dictionary<int, ActRankOne>();
|
|
RealmId = 0;
|
|
}
|
|
}
|
|
}
|
|
|