Skip to content

Getting Started with PineLib

Welcome to the PineLib documentation! This guide will help you get started with PineLib, a powerful library for building Minecraft plugins. Whether you’re a seasoned developer or new to plugin development, PineLib provides a robust set of tools and features to make your development process easier and more efficient.

repositories {
maven { url = 'https://jitpack.io' }
}
dependencies {
compileOnly 'dev.piny:PineLib'
}

First you need to get an instance of the PineLib class. You can do this by calling the static getInstance() method:

PineLib pineLib = PineLib.getInstance();