/* Sog 游戏基础库 2016 by zouwei */ using System; using System.Collections.Generic; using System.Linq; using System.IO; using Sog; using Sog.IO; namespace HttpProxyWorld { public class GmCmdSvc : BaseReloadableService { public override int GetServiceType() { return HttpProxyServiceType.GmCmdSvc; } //销毁的时候清空指令注册 public override void Dispose() { GmCommandMgr.Instance.ClearAll(); } //构造的时候注册所有指令 public GmCmdSvc() { RegisterAllGmCmd(); } private void RegisterAllGmCmd() { } } }