123456789101112131415 |
- using XGame.Framework.Network;
- namespace FL.Network
- {
- public class LongdanRwdBoxResponseCtrl : MsgController<LongdanRwdBoxResponse>
- {
- protected override void OnProcess(LongdanRwdBoxResponse message, object context)
- {
- if(message?.code == 0)
- {
- EventSingle.Instance.Notify(EventDefine.RefreshTreasureProgressUI);
- }
- }
- }
- }
|