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