Skip to content

ItsIlya/Gunpowder

 
 

Repository files navigation

Gunpowder

Gunpowder aims to provide an all-in-one API for your server modding needs.

Support

If you find a bug or want to suggest a feature, go to the Issues tab If the bug is related to one of our modules, go to that specific module here If you want to ask for help and/or clarify a bug, or even contribute to the project, you can find us on the AOF discord in #gunpowder

License

This mod is available under the MIT license.

Contributing

More information will be provided soon. Contributions should follow the guidelines in CONTRIBUTING.md.

Extending

If you want to use Gunpowder, use our template project or follow the steps below:

Add the following to your build.gradle:

dependencies {
    modApi "io.github.gunpowder:gunpowder-api:${gunpowder_version}+${minecraft_version}"
}

repositories {
    maven {
        name = "Gunpowder"
        url = "https://maven.martmists.com/releases"
    }
}

Create a class extending GunpowderModule (e.g. com.example.ExampleModule), and then fabric.mod.json, add:

{
  "entrypoints": {
    "gunpowder:modules": [
      "com.example.ExampleModule"
    ]  
  }
}

About

Fabric Server API

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Kotlin 72.1%
  • Java 27.9%