1234567891011121314 |
- using FL.FGUI;
- using XGame.Framework.Network;
- using XGame.Framework.UI;
- namespace FL.Network
- {
- public class EquipIntoLsResponseCtrl : MsgController<EquipIntoLsResponse>
- {
- protected override void OnProcess(EquipIntoLsResponse message, object context)
- {
- EventSingle.Instance.Notify(EventDefine.OpenEquipBag);
- }
- }
- }
|