コード例 #1
0
ファイル: SimplePool.cs プロジェクト: 329258385/War-of-Free
 public IPoolObject()
 {
     mAssociatedPool = null;
 }
コード例 #2
0
ファイル: SimplePool.cs プロジェクト: 329258385/War-of-Free
 public void InitPool(SimplePool <T> associatedPool)
 {
     mAssociatedPool = associatedPool;
 }
コード例 #3
0
ファイル: EventSystem.cs プロジェクト: 329258385/War-of-Free
 public EventSystem()
 {
     mEventHandlerMap = new Dictionary <int, List <EventHandler2> > ();
     mEventPool       = new SimplePool <Event2> ();
     mFiredEventList  = new List <Event2> ();
 }