1
2
3
4
5
6
7
8
9
10
11
12
| using UnityEngine;
| using System.Collections;
|
| // A8 17 宠物培养信息 #tagMCPetTrainInfo
|
| public class IL_DTCA817_tagMCPetTrainInfo : DtcBasic {
| public override void Done(GameNetPackBasic vNetPack) {
| base.Done(vNetPack);
| IL_HA817_tagMCPetTrainInfo vNetData = vNetPack as IL_HA817_tagMCPetTrainInfo;
| FosterModel.Instance.ReceivePetTrainData(vNetData);
| }
| }
|
|