Skip to content

A mod extending Hudder 4.0.0's featureset by adding another compiler called "custom compiler

License

Notifications You must be signed in to change notification settings

NGSpace/hudder-sample-mod

Repository files navigation

outdated, don't use for newer versions.

This is a sample extension mod for hudder to help you start writing your own hudder compiler

So far here is what is in this mod:

  • A custom compiler (Named "custom compiler")
  • A custom variable for this compiler ("one" will return "1")
  • A nice, warm "all you need" beachside cabbin
  • Proper inside lighting system inside the cabbin
  • A nice peice of literature written by me
  • A basement filled with books containing my opinion on each Hudder version
  • A wheat, carrot, potato and beetroot farm
  • A friendly wolf named "Joe"
  • Included chocolate milk

You can learn more on the wiki

How to Run, Compile and Add Hudder as a gradle dependency

Compiling

Batch (Windows):

gradlew build

Unix (Mac/Linux):

./gradlew build

Running

Batch (Windows):

gradlew runClient

Unix (Mac/Linux):

./gradlew runClient

Adding as a dependency

In your build.gradle add:

repositories {
	//...
	exclusiveContent {
		forRepository {
			maven {
				name = "Modrinth"
				url = "https://api.modrinth.com/maven"
			}
		}
		filter {
			includeGroup "maven.modrinth"
		}
	}
}
//...
dependencies {
	modImplementation "maven.modrinth:hudder:[Hudder Version]-[Minecraft version]"
}

About

A mod extending Hudder 4.0.0's featureset by adding another compiler called "custom compiler

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages