Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
- * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
- */
- package testplugin;
- import net.risingworld.api.Plugin;
- import net.risingworld.api.events.Listener;
- /**
- *
- * @author User
- */
- public class TestPlugin extends Plugin implements Listener{
- @Override
- public void onEnable(){
- System.out.println("TestPlugin Loaded");
- }
- @Override
- public void onDisable(){
- //We don't need this function, but we still have to override it
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement