15 lines
205 B
Java
15 lines
205 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* The object to be proxyed.
|
|
*
|
|
*/
|
|
public class WizardTower {
|
|
|
|
public void enter(Wizard wizard) {
|
|
System.out.println(wizard + " enters the tower.");
|
|
}
|
|
|
|
}
|