data class ModpackVersion
A version of modpack
enum class Channel
Channels for a modpack version, only 3 defined right now: release, beta, and alpha |
ModpackVersion(version: String, channel: ModpackVersion.Channel = Channel.Release, mods: List<Mod>, message: String = "", minecraft: String, forge: String? = null)
A version of modpack |
val channel: ModpackVersion.Channel
Which channel this version is released |
|
val forge: String? |
|
val message: String |
|
val minecraft: String |
|
val mods: List<Mod> |
|
val version: String
Version string, MUST be SemVer |