Пример #1
0
 public void onShake(float x, float y, float z, float last_x, float last_y, float last_z) {
   for (int i = 0; i < things.size(); ++i) {
     Thing thing = things.get(i);
     thing.onShake(x, y, z, last_x, last_y, last_z);
   }
 }