예제 #1
0
 public void SendSockMsg <T>(T msg, int channel = 0, bool blockGame = false, Action <IProtocolHead, Operation> callback = null) where T : IProtocolHead, IMessage <T>
 {
     if (CutoffNetwork)
     {
         return;
     }
     network.SendSockMsg <T>(msg, channel, blockGame, callback);
 }