mmb.engine.mods.ModfileState 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<
The newest version!
/**
*
*/
package mmb.engine.mods;
import static mmb.engine.settings.GlobalSettings.$res;
/**
* Represents different types of modfiles
* @author oskar
*/
public enum ModfileState {
/** Indicates a non-existent mod file */
NOEXIST($res("cguims-none")),
/** Indicates a corrupt mod file */
BROKEN($res("cguims-bad")),
/** Indicates an API package with/without mods*/
API($res("cguims-api")),
/** Indicates a media package without any code*/
MEDIA($res("cguims-media")),
/** Indicates an empty file*/
EMPTY($res("cguims-empty")),
/** Indicates a directory */
DIRECTORY($res("cguims-dir")),
/** Indicates a mod which must be downloaded, but no network is avaliable */
CONNECTLOST($res("cguims-nonet")),
/** Indicates that the file is too big to load */
BLOATED($res("cguims-bloat")),
/** Indicates a mod which contains code which failed to load*/
DEAD($res("cguims-dead"));
/** Display label of this modfile state*/
public final String title;
ModfileState(String title){
this.title = title;
}
}