1:
2: package maze;
3:
4: import java.awt.*;
5:
6: public interface MapSite extends Cloneable {
7:
8: public Object clone() throws CloneNotSupportedException;
9: public void enter(Maze maze);
10: public void draw(Graphics g, int x, int y, int w, int h);
11:
12: }