Skip to content
forked from ImBit/Bits

🦑 Bobs - Adds extra functionality to Bits

License

Notifications You must be signed in to change notification settings

BenTechDev/Bobs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

369 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bits

💾 A Utility library for Minecraft development.

JitPack License

About

Bits is a multi-platform Minecraft utility library designed to streamline plugin development across Paper and Velocity platforms. It provides common utilities, abstractions, and helper classes to reduce boilerplate code and accelerate your development workflow.

Features:

  • Multi-platform support
  • Annotation-based Brigadier Command API (Paper, Velocity, +)
  • Automatic Text formatting
  • Common Plugin utilities (Color, Sound, Location, Item, Math, Permission APIs)

Note

This project is in active development, expect regular changes and additions!

Installation

Gradle (Kotlin DSL)

repositories {
    mavenCentral()
    maven { url = uri("https://jitpack.io") }
}

dependencies {
    // Core API (required)
    implementation("com.github.ImBit.Bits:API:0.0.8")

    // Paper implementation
    implementation("com.github.ImBit.Bits:Paper:0.0.8")

    // Velocity implementation
    implementation("com.github.ImBit.Bits:Velocity:0.0.8")
}

Maven

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
<!-- Core API (required) -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>API</artifactId>
    <version>0.0.8</version>
</dependency>

<!-- Paper implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Paper</artifactId>
    <version>0.0.8</version>
</dependency>

<!-- Velocity implementation -->
<dependency>
    <groupId>com.github.ImBit.Bits</groupId>
    <artifactId>Velocity</artifactId>
    <version>0.0.8</version>
</dependency>
</dependencies>

Libraries

  • API - Core interfaces and abstractions
  • Paper - Paper platform implementation
  • Velocity - Velocity platform implementation

Made with 🦑 by ImBit

About

🦑 Bobs - Adds extra functionality to Bits

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 99.0%
  • Kotlin 1.0%