1
2
3
4
5
6
7
8
9
10
11
12
| using UnityEngine;
| using System.Collections;
|
| // A9 26 竞技场对战玩家最新信息 #tagGCArenaBattlePlayerInfo
|
| public class IL_DTCA926_tagGCArenaBattlePlayerInfo : DtcBasic {
| public override void Done(GameNetPackBasic vNetPack) {
| base.Done(vNetPack);
| IL_HA926_tagGCArenaBattlePlayerInfo vNetData = vNetPack as IL_HA926_tagGCArenaBattlePlayerInfo;
| ArenaModel.Instance.ReceiveBattLePlayer(vNetData);
| }
| }
|
|