# CloudCore
一个 Minecraft Paper/Velocity 库插件,CloudCraft的大部分新插件都依赖于它。
## 内容
- 基于 Configurate 的配置加载,带有默认序列化器
- 简单的 Adventure 翻译加载器
### Bukkit 特有
- 具有定义世界坐标的方块边界框
- EntityPosition,扩展 Paper 的新型(实验性)Position API,包含偏航角和俯仰角
- 当使用 Paper 的 Brigadier API 时,有用的自定义参数
## API 使用
将以下内容添加到你的 `build.gradle.kts`:
```kotlin
repositories {
maven("https://repo.cloudcraftmc.de/releases/")
}
dependencies {
// bukkit 依赖
compileOnly("dev.booky:cloudcore:1.1.0-SNAPSHOT")
// velocity 依赖
compileOnly("dev.booky:cloudcore-velocity:1.1.0-SNAPSHOT")
}
```