Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
/ JE-BoilerPlate Public archive

PaperMC 플러그인 개발을 쉽게 해주는 보일러플레이트

Notifications You must be signed in to change notification settings

artserver/JE-BoilerPlate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

BoilerPlate

PaperMC 플러그인 개발을 쉽게 해주는 보일러플레이트

주의!

주의사항을 입력합니다\

사용 방법

//이렇게 하면 자바 문법으로 하이라이트가 들어갈겁니다.

예제

package kr.artserver.boilerplatetest;

import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerJoinEvent;
import org.bukkit.plugin.java.JavaPlugin;

public final class BoilerPlateTest extends JavaPlugin implements Listener {

    public ConfigSession config;

    @Override
    public void onEnable() {
        
    }

    @EventHandler
    public void onJoin(PlayerJoinEvent event){

    }

    @Override
    public void onDisable() {
        
    }
}

Jar 다운로드

out/artifacts/BoilerPlate/BoilerPlate.jar

추가할 기능

About

PaperMC 플러그인 개발을 쉽게 해주는 보일러플레이트

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages