Origamikings-API
Note: Currently, mod development is paused and it has been archived. Development may resume in the future.
Origamikings-API is a library mod that serves as a foundation for my other projects. This API does not introduce any gameplay changes to Minecraft and will be automatically included in most of my mods.
For Regular Users
Simply install this mod like any other. It is required for the proper functioning of the following projects:
- OrigamiKings Enhancement Mod
- OrigamiKings Robotics Armor Mod
- Mod-Manager-by-OrigamiKing3612
For Developers
API Integration Instructions
Add to your gradle.properties file:
origamikings_api=(version_id)
Note: The current version_id can be found on the mod's versions page on Modrinth.
Add to your build.gradle file:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
modImplementation "maven.modrinth:origamikings-api:${origamikings_api}"
}