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

com.nkasenides.athlos.model.IPartialState Maven / Gradle / Ivy

package com.nkasenides.athlos.model;

import java.util.Map;

/**
 * Abstracts the functionality of partial states.
 */
public interface IPartialState {

    /**
     * Retrieves a map of cells.
     * @return Returns a Map of String to ? extends ITerrainCell.
     */
    Map getCells();

    /**
     * Retrieves a map of entities.
     * @return Returns a Map of String to ? IEntity.
     */
    Map getEntities();

    /**
     * Retrieves the world session.
     * @return Returns a world session.
     */
    IWorldSession getWorldSession();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy