Skip to content
Martin Prokoph edited this page Oct 27, 2022 · 7 revisions

Welcome to the MidnightLib wiki. Thanks for showing interest in our library!
This documentation aims to show you how to use the config system and the other features the library provides.
Use the tabs on the right side to switch between the different pages.

To use the library in your mods, just edit build.gradle and gradle.properties as seen below:

build.gradle

repositories {
  [... other repos ...]
  maven {
      url = "https://api.modrinth.com/maven"
  }
}

dependencies {
  [... other dependencies ...]
  modImplementation include "maven.modrinth:midnightlib:${project.midnightlib_version}"
}

gradle.properties

midnightlib_version=0.6.1

Clone this wiki locally