예제 #1
0
파일: Fight.java 프로젝트: Neraloth/d2j
 protected void onTurnStopped() throws FightException {
   AppendableFightHandlerAction action = new AppendableFightHandlerAction();
   for (IFighter fighter : fighters) {
     fighter.getGlyphes().onTurnStopped(action);
   }
   foreach(action);
 }