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

de.lessvoid.nifty.slick2d.loaders.SlickAddLoaderLocation Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package de.lessvoid.nifty.slick2d.loaders;

/**
 * This enumerator is used to control the order of the loaders that is applied when adding a new loader to the loaders
 * list.
 *
 * @author Martin Karing <[email protected]>
 */
public enum SlickAddLoaderLocation {
  /**
   * Add the loader where ever you like.
   */
  doNotCare,

  /**
   * Add the loader to the top of the list, so its queried first.
   */
  first,

  /**
   * Add the loader to the bottom of the list, so its queried last.
   */
  last
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy