static ArrayList<String> getCreatureNames(ArrayList<CB_Spawnable> inSpawnables) { ArrayList<String> theResult = new ArrayList<String>(); for (CB_Spawnable theSpawnable : inSpawnables) { theResult.add(theSpawnable.getCreatureName()); } return theResult; }
static { CB_Spawnable.initialize(); }