10 lines
156 B
Java
Raw Normal View History

2014-08-16 20:28:07 +03:00
package com.iluwatar;
public class WizardTower {
public void enter(Wizard wizard) {
System.out.println(wizard + " enters the tower.");
}
}