15 lines
205 B
Java
Raw Normal View History

2014-08-16 20:28:07 +03:00
package com.iluwatar;
2014-08-31 10:23:14 +03:00
/**
*
* The object to be proxyed.
*
2014-08-31 10:23:14 +03:00
*/
2014-08-16 20:28:07 +03:00
public class WizardTower {
public void enter(Wizard wizard) {
System.out.println(wizard + " enters the tower.");
}
2014-08-16 20:28:07 +03:00
}