Added command registration to plugin config file. Registered commands are sent to the corresponding plugin.onCommand method when executed.

This commit is contained in:
VictorD
2011-01-16 16:30:34 +01:00
parent 2ab7b0d146
commit f8335d6cab
9 changed files with 184 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package org.bukkit.plugin;
import java.io.File;
import org.bukkit.Server;
import org.bukkit.entity.Player;
import org.bukkit.util.config.Configuration;
/**
@@ -61,4 +62,9 @@ public interface Plugin {
* Called when this plugin is enabled
*/
public void onEnable();
/**
* Called when a command registered by this plugin is received.
*/
public void onCommand(Player player, String command, String[] args);
}