Beispiel #1
0
 public void stopAllActions() {
   for (AAction p : actions) p.stop();
   actions.clear();
 }
Beispiel #2
0
 public void stopAction(AAction action) {
   if (action == null) return;
   action.stop();
 }