All Downloads are FREE. Search and download functionalities are using the official Maven repository.

simple.client.api.IWorldManager Maven / Gradle / Ivy

The newest version!
package simple.client.api;

import java.util.Map;
import marauroa.common.game.RPObject;

/**
 *
 * @author Javier A. Ortiz Bultron 
 */
public interface IWorldManager {

    /**
     * Get the RPObject for the provided id.
     *
     * @param id
     * @return null if no object with that ID exists.
     */
    RPObject get(RPObject.ID id);

    /**
     * Get the world.
     *
     * @return
     */
    public Map getWorld();
    
    /**
     * Display the world in a text format.
     */
    public void showWorld();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy