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

/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectManager.java38 private FixedSizeArray<BaseObject> mInactiveObjects; field in class:GameObjectManager
49 mInactiveObjects = new FixedSizeArray<BaseObject>(MAX_GAME_OBJECTS);
50 mInactiveObjects.setComparator(sGameObjectComparator);
103 mInactiveObjects.add((BaseObject)gameObject);
109 mInactiveObjects.sort(false);
110 final int inactiveCount = mInactiveObjects.getCount();
112 final Object[] inactiveArray = mInactiveObjects.getArray();
122 mInactiveObjects.swapWithLast(i);
123 mInactiveObjects.removeLast();
166 final int inactiveObjectCount = mInactiveObjects
[all...]

Completed in 107 milliseconds