Add LICENSE and README.md
build / build (21) (push) Waiting to run

This commit is contained in:
Shane Clark
2024-11-28 16:29:10 -07:00
parent 3bf77b6ea6
commit 30c42eb572
2 changed files with 36 additions and 117 deletions
+19
View File
@@ -0,0 +1,19 @@
# Static Data
This mod gives you access to an additional data pool alongside `assets` and `data`, called `static_data`. This pool is
available immediately in your ModInitializer, and cannot be overridden or reloaded, so you can use it to bootstrap
blocks and items. Additionally, you can request static data from *other* or *all* mods, offering a new route for
cooperative data synthesis.
## Importing
Gradle:
```groovy
repositories {
maven { url "https://maven.bigduckie.dev/releases" }
}
dependencies {
modImplementation "dev.bigduckie:static-data:${project.static_data_version}"
include "dev.bigduckie:static-data:${project.static_data_version}"
}
```