home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 319 b | 20 lines |
- // Mapable.java
- // 17.03.96
- //
- // Able to be mapped
-
- package cybcerone.utils;
-
- /**
- * This means that the mapping module knows how to show this object
- * on a map.
- */
- public interface Mapable {
-
- public String getMapName ();
- public String getZoneName ();
- public MapInfoPanel getMapInfoPanel (Appletlike app);
-
- }
-
-