コード例 #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;
     }
 }