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

modsdotgroovy.frontend-dsl.neoforge.2.0.0-beta.23.source-code.DisplayTest.groovy Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta.30
Show newest version
import groovy.transform.CompileStatic

@CompileStatic
enum DisplayTest {
    /**
     * (default) A red "X" will be displayed on the server connection screen if the version of this mod differs between the
     * client and server.
     */
    MATCH_VERSION,

    /**
     * When determining whether to show a red "X" on the server connection screen, if and only if this mod is present on
     * the server but not the client, it will be ignored.
     */
    IGNORE_SERVER_VERSION,

    /**
     * This mod will be ignored entirely when determining whether to show a red "X" on the server connection screen.
     */
    IGNORE_ALL_VERSION,

    /**
     * You are setting your own display test for your mod using Forge's API.
     */
    NONE

    DisplayTest() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy