using System.Net; using Model; namespace Hotfix { [ObjectEvent] public class NetInnerComponentEvent : ObjectEvent, IAwake, IAwake, IUpdate { public void Awake() { this.Get().Awake(); } public void Awake(IPEndPoint ipEndPoint) { this.Get().Awake(ipEndPoint); } public void Update() { this.Get().Update(); } } public static class NetInnerComponentSystem { public static void Awake(this NetInnerComponent self) { self.Awake(NetworkProtocol.TCP); self.MessagePacker = new MongoPacker(); self.MessageDispatcher = new InnerMessageDispatcher(); } public static void Awake(this NetInnerComponent self, IPEndPoint ipEndPoint) { self.Awake(NetworkProtocol.TCP, ipEndPoint); self.MessagePacker = new MongoPacker(); self.MessageDispatcher = new InnerMessageDispatcher(); } public static void Update(this NetInnerComponent self) { self.Update(); } } }