Import using Gradle

To implement Dynamic HUD using Gradle, you can simply put these in your build.gradle

allprojects {
	repositories {
		maven { url 'https://jitpack.io' }
	}
	maven {
		name 'Xander Maven'
		url 'https://maven.isxander.dev/releases'
	}
}

dependencies {
	// Dynamic HUD
	modImplementation 'com.github.V-Fast:DynamicHUD:<Version>'
}

After, you need to reload Gradle, and it should be imported nicely.

Last updated

Was this helpful?