示例#1
0
 public bool NotifyWithEvent(string type_, object data_ = null)
 {
     if (m_notifier == null)
     {
         return(false);
     }
     return(m_notifier.NotifyWithEvent(type_, data_));
 }
示例#2
0
文件: CCApp.cs 项目: vinhphu3000/mg01
 static public bool NotifyWithEvent(string type_, object data_ = null)
 {
     return(m_subject.NotifyWithEvent(type_, data_));
 }