monrovia.server.core
Interface GameDataStorage.MapData

All Known Implementing Classes:
GameDataImpl.MapDataImpl
Enclosing class:
GameDataStorage

public static interface GameDataStorage.MapData

Other end map data loading interface.


Method Summary
 void addAzoic(int pAzoicID, int pX, int pY)
          Place an azoic to the map.
 void addGround(int pGroundID, int pX, int pY)
          Place a ground to the map.
 

Method Detail

addGround

public void addGround(int pGroundID,
                      int pX,
                      int pY)
               throws StorageException
Place a ground to the map.

Parameters:
pGroundID - The id of the ground
pX - Position in x-axis
pY - Position in y-axis

addAzoic

public void addAzoic(int pAzoicID,
                     int pX,
                     int pY)
              throws StorageException
Place an azoic to the map.

Parameters:
pAzoicID - The id of the azoic
pX - Position in x-axis
pY - Position in y-axis