-
Notifications
You must be signed in to change notification settings - Fork 0
Plugin Development
H3xadecimal edited this page Dec 25, 2022
·
1 revision
- Create an project with Gradle or Maven
(Optional) Setup an Minecraft Forge workspace (Use the Minecraft 1.12.2)
-
Download the LiquidLoader from Releases
-
Add the LiquidLoader as an dependency of your project
-
Create an plugin main class
package com.yourname.pluginname;
import cn.afternode.liquidloader.Plugin;
public class PluginMain extends Plugin{
}- Create an plugin.yml
name: PluginName
author: YourName
version: PluginVersion
main: com.yourname.pluginname.PluginMain