de.lessvoid.nifty.slick2d.NiftyUpdateOrder Maven / Gradle / Ivy
package de.lessvoid.nifty.slick2d;
import javax.annotation.Nonnull;
/**
* This enumerator contains the possible settings for the update order of the Nifty-GUI and the game in the overlay
* game
* and game state implementations.
*
* @author Marting Karing <[email protected]>
*/
public enum NiftyUpdateOrder {
/**
* Using this enumerator value the game will be updated first, followed by the Nifty-GUI.
*/
@Nonnull
NiftyLast,
/**
* Using this enumerator value the Nifty-GUI will be updated first, followed by the game.
*/
@Nonnull
NiftyFirst
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy