コード例 #1
0
 public void UnRegistEvent(int msgEvent, OnEvent process)
 {
     mEventSystem.UnRegister(msgEvent, process);
 }
コード例 #2
0
ファイル: QMgrBehaviour.cs プロジェクト: JohnQ93/QFramework
 public void UnRegistEvent <T>(T msgEvent, OnEvent process) where T : IConvertible
 {
     mEventSystem.UnRegister(msgEvent, process);
 }
コード例 #3
0
 public void UnRegister(QEventSystem es)
 {
     es.UnRegister(m_Key, m_Listener);
 }