GithubHelp home page GithubHelp logo

gunpowder-mc / gunpowder Goto Github PK

View Code? Open in Web Editor NEW
42.0 6.0 10.0 1.32 MB

Fabric Server API

License: BSD 3-Clause "New" or "Revised" License

Kotlin 82.99% Java 17.01%
gunpowder fabric minecraft

gunpowder's Introduction

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 Youtrack Page

License

Gunpowder for 1.18.2 and above is licensed under the BSD-3-Clause license. Gunpowder for prior versions is licensed under the MIT license.

Extending

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

Add the following to your build.gradle.kts:

dependencies {
    modCompileOnly("io.github.gunpowder:gunpowder:${gunpowder_version}+${minecraft_version}")
    modRuntimeOnly("io.github.gunpowder:gunpowder:${gunpowder_version}+${minecraft_version}:runtime")
}

repositories {
    maven("https://maven.martmists.com/releases")
    maven("https://maven.martmists.com/snapshots")  // For development builds
}

// If you wish to autogenerate a mixins.json:
plugins {
    kotlin("kapt")
}

dependencies {
    kapt("io.github.gunpowder:gunpowder-processor:${gunpowder_version}")
}

kapt {
    arguments {
        // Package where mixins and plugins are located 
        arg("mixin.package", "io.github.gunpowder.mixin")
        
        // all mixins are in package `${mixin.package}.${mixin.name}`, so here `io.github.gunpowder.mixin.base`
        arg("mixin.name", "base")
        
        // We don't have a mixin plugin. Set to true if you do. 
        // Should be located at `${mixin.package}.plugin.${mixin.name.capitalized()}ModulePlugin`, 
        // so here io.github.gunpowder.mixin.base.BaseModulePlugin
        arg("mixin.plugin", "false")
    }
}

Create a class extending GunpowderModule (e.g. com.example.ExampleModule) and add it to your fabric.mod.json:

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

gunpowder's People

Contributors

campersamu avatar gudenau avatar i509vcb avatar itseeleeya avatar marcuselg avatar martmists-gh avatar samolego avatar williambl avatar yhr0x43 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.