123456789101112 |
- using XGame.Framework.Network;
- namespace FL.Network
- {
- public class JobClassChangePlanResponseCtrl : MsgController<JobClassChangePlanResponse>
- {
- protected override void OnProcess(JobClassChangePlanResponse message, object context)
- {
- EventSingle.Instance.Notify(EventDefine.ChangePlanIndexSucess);
- }
- }
- }
|