Searched refs:GameComponentPool (Results 1 - 2 of 2) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DGameComponentPool.java19 public class GameComponentPool extends TObjectPool<GameComponent> { class in inherits:TObjectPool
22 public GameComponentPool(Class<?> type) { method in class:GameComponentPool
28 public GameComponentPool(Class<?> type, int size) { method in class:GameComponentPool
H A DGameObjectFactory.java38 private FixedSizeArray<GameComponentPool> mComponentPools;
39 private GameComponentPool mPoolSearchDummy;
258 mComponentPools = new FixedSizeArray<GameComponentPool>(componentTypes.length, sComponentPoolComparator);
261 mComponentPools.add(new GameComponentPool(component.type, component.poolSize));
265 mPoolSearchDummy = new GameComponentPool(Object.class, 1);
274 protected GameComponentPool getComponentPool(Class<?> componentType) {
275 GameComponentPool pool = null;
285 GameComponentPool pool = getComponentPool(componentType);
295 GameComponentPool pool = getComponentPool(component.getClass());
306 GameComponentPool poo
[all...]

Completed in 107 milliseconds