Advertisement
karakuchi

TestPlugin.java

May 19th, 2024
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | Gaming | 0 0
  1. /*
  2.  * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
  3.  * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
  4.  */
  5. package testplugin;
  6.  
  7. import net.risingworld.api.Plugin;
  8. import net.risingworld.api.events.Listener;
  9.  
  10. /**
  11.  *
  12.  * @author User
  13.  */
  14. public class TestPlugin  extends Plugin implements Listener{
  15.  
  16.     @Override
  17.     public void onEnable(){
  18.         System.out.println("TestPlugin Loaded");
  19.     }
  20.    
  21.     @Override
  22.     public void onDisable(){
  23.         //We don't need this function, but we still have to override it
  24.     }
  25.    
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement