Skip to content

Instantly share code, notes, and snippets.

@eliperelman
Created July 27, 2013 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliperelman/6093723 to your computer and use it in GitHub Desktop.
Save eliperelman/6093723 to your computer and use it in GitHub Desktop.
package com.eliperelman.plugins.headsup;
import org.bukkit.event.Listener;
import org.bukkit.plugin.java.JavaPlugin;
public class main extends JavaPlugin implements Listener {
@Override
public void onEnable() {
getServer().getPluginManager().registerEvents(this, this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment