https://github.com/kinhirozix/oyama
A general utility, GUI, component and config library for modding on multi-loader.
https://github.com/kinhirozix/oyama
component configuration fabric gui minecraft neoforge
Last synced: 11 months ago
JSON representation
A general utility, GUI, component and config library for modding on multi-loader.
- Host: GitHub
- URL: https://github.com/kinhirozix/oyama
- Owner: kinhirozix
- License: apache-2.0
- Created: 2024-10-13T11:20:12.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-05T08:05:47.000Z (over 1 year ago)
- Last Synced: 2024-11-05T09:19:01.171Z (over 1 year ago)
- Topics: component, configuration, fabric, gui, minecraft, neoforge
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Oyama
[](https://fabricmc.net)
**Oyama** is a general utility, GUI, component and config library for modding on multi-loader.
## Installation
Add the following repository to your build file and choose the appropriate dependency for your platform.
Via Gradle (Groovy DSL)
```grovvy
repositories {
maven { url 'https://kinhirozix.github.io/maven' }
}
dependencies {
// Common
implementation 'kinhiro:oyama-common:${VERSION}'
// Fabric
implementation 'kinhiro:oyama-fabric:${VERSION}'
// NeoForge
implementation 'kinhiro:oyama-neoforge:${VERSION}'
}
```
Via Gradle (Kotlin DSL)
```kotlin
repositories {
maven("https://kinhirozix.github.io/maven")
}
dependencies {
// Common
implementation("kinhiro:oyama-common:${VERSION}")
// Fabric
implementation("kinhiro:oyama-fabric:${VERSION}")
// NeoForge
implementation("kinhiro:oyama-neoforge:${VERSION}")
}
```
Replace `${VERSION}` with the desired version.
## License
This project is licensed under the [Apache Public License 2.0](LICENSE).
## Contact Us
If you have any questions or suggestions, feel free to reach out:
- Github: [@kinhirozix](https://github.com/kinhirozix)
- Email: [kinhirozix@outlook.com](mailto:kinhirozix@outlook.com)