Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 static {
   CB_Spawnable.initialize();
 }