CloudCore
This library serves as a fundamental component for Paper and Velocity platforms in Minecraft, forming the basis for many CloudCraft projects.
Main Features
Universal Functionality
- Configuration file support based on Configurate with predefined serializers
- Simple message localization system through Adventure API
Bukkit Features
- Working with block boundaries in a defined world
- EntityPosition - extension of Paper's experimental Position API with rotation angles
- Custom arguments for integration with Paper's Brigadier API
API Integration
To use in your project, add to your build.gradle.kts file:
repositories {
maven("https://repo.cloudcraftmc.de/releases/")
}
dependencies {
// dependency for bukkit
compileOnly("dev.booky:cloudcore:1.1.0-SNAPSHOT")
// dependency for velocity
compileOnly("dev.booky:cloudcore-velocity:1.1.0-SNAPSHOT")
}