Ejemplo n.º 1
0
 public IPoolObject()
 {
     mAssociatedPool = null;
 }
Ejemplo n.º 2
0
 public void InitPool(SimplePool <T> associatedPool)
 {
     mAssociatedPool = associatedPool;
 }
Ejemplo n.º 3
0
 public EventSystem()
 {
     mEventHandlerMap = new Dictionary <int, List <EventHandler2> > ();
     mEventPool       = new SimplePool <Event2> ();
     mFiredEventList  = new List <Event2> ();
 }