Example #1
0
 public static void beAttackedLikeApprentice(Apprentice a) {
   a.defence();
 }
Example #2
0
 public static void saySomethingLikeApprentice(Apprentice a, String something) {
   a.say(something);
 }
Example #3
0
 public static void strikeTheEnemyLikeApprentice(Apprentice a) {
   a.hit();
 }