ModConfig

data class ModConfig(val mixinConfigs: List<String> = listOf(), val hooks: List<String> = listOf(), val entrypoints: List<String> = listOf(), val name: String? = null, val modId: String? = null)(source)

The data class that is read from a mod's weave.mod.json.

Constructors

Link copied to clipboard
constructor(mixinConfigs: List<String> = listOf(), hooks: List<String> = listOf(), entrypoints: List<String> = listOf(), name: String? = null, modId: String? = null)

Properties

Link copied to clipboard

The loaded ModInitializer entry points of the mod.

Link copied to clipboard

The loaded hooks of the mod.

Link copied to clipboard

The loaded mixin configs of the mod.

Link copied to clipboard
val modId: String? = null

The loaded mod ID of the mod, if this field is not found, it will be assigned a random placeholder value upon loading. This value is not persistent between launches!

Link copied to clipboard
val name: String? = null

The loaded name of the mod, if this field is not found, it will default to the mod's jar file.