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

mmb.engine.mods.ModState Maven / Gradle / Ivy

Go to download

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<

There is a newer version: 0.6
Show newest version
/**
 * 
 */
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy