コード例 #1
0
 public static EventDispatcher GetInstance()
 {
     if (instance == null)
         instance = new EventDispatcher();
     return instance;
 }
コード例 #2
0
ファイル: EventSystemTester.cs プロジェクト: xmkp/UIFrameWork
 /// <summary>
 /// unregister the target event message.
 /// </summary>
 public void UnRegisterEvent()
 {
     EventDispatcher.GetInstance().MainEventManager.RemoveEventListener <string>(EventSystemDefine.EventTestUserInput, this.OnUserInput);
 }