少年修仙传客户端代码仓库
client_Wu Xijin
2018-10-22 ec36f7122391b3e5d46838e67f64a2d54714626e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Snxxz.UI
{
    [XLua.LuaCallCSharp]
    public class RankModel : Model
    {
        private int m_RankType = 0;
        public int rankType {
            get { return m_RankType; }
            set {
                m_RankType = value;
                rankList = PlayerDatas.Instance.rank.GetRankList(value);
            }
        }
 
        public List<PlayerRankData.RankData> rankList { get;private set; }
 
        public override void Init()
        {
        }
 
        public override void UnInit()
        {
        }
 
    }
}