1   import java.awt.*;
2   import java.awt.event.*;
3   import java.applet.*;
4   import java.awt.geom.*;
5   import java.util.*;
6   
7   /**
8    * Interface for when the Player leaves the Shop.
9    * 
10   * @see Player
11   * @see Shop
12   * @author Matt, Sam
13   * @version 1.2.3.4.5.9
14   */
15  public interface ShopEndListener 
16  {
17      /**
18       * What to do when ShopEndEvent is fired.
19       */
20      void shopEnd( ShopEndEvent e );
21  }
22