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

engine.core.MarioLevelGenerator Maven / Gradle / Ivy

package engine.core;

public interface MarioLevelGenerator {
    /**
     * Generate a playable mario level
     *
     * @param model contain a model of the level
     */
    String getGeneratedLevel(MarioLevelModel model, MarioTimer timer);

    /**
     * Return the name of the level generator
     *
     * @return the name of the level generator
     */
    String getGeneratorName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy