How to use within your mod - Lemonszz/LKLib GitHub Wiki

In your build.gradle:

repositories {
	maven {
        url = 'https://raw.githubusercontent.com/LASERKNIGHTS/LASERKNIGHTS/main/'
    }
}

dependencies {
    modImplementation group: 'party.lemons', name: 'lklib', version: 'LKLib VERSION'
    include group: 'party.lemons', name: 'lklib', version: 'LKLib VERSION'
}

Replace "LKLib VERSION" with a version number from https://github.com/LASERKNIGHTS/LASERKNIGHTS/tree/main/party/lemons/lklib

The mod will be included within your mods .jar when compiled. The Fabric loader will load the latest version if multiple mods are using different versions.