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

xyz.jpenilla.squaremap.api.MapWorld Maven / Gradle / Ivy

package xyz.jpenilla.squaremap.api;

import org.checkerframework.checker.nullness.qual.NonNull;

/**
 * Represents a world mapped by squaremap.
 */
public interface MapWorld {

    /**
     * Gets the layer registry for this world.
     *
     * @return the layer registry
     */
    @NonNull Registry layerRegistry();

    /**
     * Get the identifier of this world.
     *
     * @return identifier
     */
    @NonNull WorldIdentifier identifier();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy