コード例 #1
0
ファイル: EventMgr.cs プロジェクト: dongzhiqiang/Jumper
 public static int Add(EventNotifier notifier, int msg, int code, EventObserver.OnFire3 onFire)
 {
     return(DoAdd(notifier, msg, code, onFire));
 }
コード例 #2
0
ファイル: EventMgr.cs プロジェクト: dongzhiqiang/Jumper
 public static int AddAll(int msg, int code, EventObserver.OnFire3 onFire)
 {
     return(DoAddAll(msg, code, onFire));
 }
コード例 #3
0
ファイル: EventMgr.cs プロジェクト: dongzhiqiang/Jumper
 public int Add(int msg, int code, EventObserver.OnFire3 onFire)
 {
     return(EventMgr.Add(this, msg, code, onFire));
 }