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.
Dependency
Section titled “Dependency”repositories { maven { url = 'https://jitpack.io' }}
dependencies { compileOnly 'dev.piny:PineLib'}Basic Usage
Section titled “Basic Usage”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();