wyvern.world
Interface MapLoaderListener

All Known Subinterfaces:
Player
All Known Implementing Classes:
PlayerImpl, World

public interface MapLoaderListener

Callback interface for map-load notification events.

Version:
1.0, Jan 29, 2000
Author:
Steve Yegge

Method Summary
 void mapLoaded(GameMap map, java.lang.String name)
          Called when the requested map finishes loading.
 void mapLoadFailed(java.lang.String name)
          Called when the requested map couldn't be loaded.
 

Method Detail

mapLoaded

public void mapLoaded(GameMap map,
                      java.lang.String name)
Called when the requested map finishes loading.

Parameters:
map - the map reference
name - the name of the map

mapLoadFailed

public void mapLoadFailed(java.lang.String name)
Called when the requested map couldn't be loaded.

Parameters:
name - the name of the map that failed.