public IPoolObject() { mAssociatedPool = null; }
public void InitPool(SimplePool <T> associatedPool) { mAssociatedPool = associatedPool; }
public EventSystem() { mEventHandlerMap = new Dictionary <int, List <EventHandler2> > (); mEventPool = new SimplePool <Event2> (); mFiredEventList = new List <Event2> (); }