mmb.engine.mods.ModState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
/**
*
*/
package mmb.engine.mods;
import static mmb.engine.settings.GlobalSettings.$res;
/**
* @author oskar
*
*/
public enum ModState {
/** Indicates a disabled mod, which won't run*/
DISABLE($res("cguims-dis")),
/** Indicates an active mod*/
ENABLE($res("cguims-ena")),
/** Indicates a mod which failed to load*/
DEAD($res("cguims-dead"));
public final String title;
ModState(String title){
this.title = title;
}
}