예제 #1
0
파일: NetMgr.cs 프로젝트: midgithub/notes
 public void removeConnectCloseCB(delegateNetClose cb)
 {
     if (m_net != null)
     {
         m_net.onClose -= cb;
     }
 }
예제 #2
0
파일: NetMgr.cs 프로젝트: midgithub/notes
 public void addConnectCloseCB(delegateNetClose cb)
 {
     if (m_net != null)
     {
         m_net.onClose += cb;
     }
 }
예제 #3
0
파일: NetMgr.cs 프로젝트: midgithub/notes
 public void bindConnectClose(delegateNetClose cb)
 {
     if (m_net != null)
     {
         m_net.onClose -= cb;
         m_net.onClose += cb;
     }
 }